Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Re-sizing of Individual LOV Popup and setting width/height of it individually instead of at Global L

3052714Nov 29 2016 — edited Dec 1 2016

Does ADF have capability of re-sizing of Individual LOV Popup and setting width/height of it individually instead of at Global Level

I have a af:inputListOfValues which opens the LOV based on View Object's LOV attribute. The LOV opens with a specific width and height. Our Business Users want some LOV Popups to be min height of 550 and some of them with minimum height of 500 and some of them with minimum height of 300.

I see that we have an option at global level, by creating a skin and putting these as part of the skin's css:

af|inputListOfValues

{

-tr-stretch-search-dialog: true;

}

af|inputListOfValues::dialog af|dialog::content-center

{

min-height:532px;

min-width:500px;

}

But this affects the entire application, which I don't want. I want to set width and height of the LOV Popup based individually. Unfortunately I don't see any property at View Object Level or Page Level.

Please let me know if there are any properties that I can use to set LOV Popup size at Individual LOV Level.

The Structure of my View Object for e.g:

EmployeeVO --> Having columns emp_id, name, dept_id, mgr_id, sub_division_id

dept_id is based on --> select dept_id, dept_name from departments (LOV)

mgr_id is based on --> select empt_id,name from employees (LOV)

sub_division_id is based on --> select division_id, division_name from sub_divisions (LOV)

Now I want Dept LOV to have Width 500, Height 300

Mgr LOV to have Width 300, Height 400

Sub Division LOV to have Width 600, Height 500

Is this possible to set.

My JDeveloper Version is 11.1.1.7.0

Build JDEVADF_11.1.1.7.0_GENERIC_130226.1400.6493

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 29 2016
Added on Nov 29 2016
3 comments
1,260 views