Hello all,
This post is about a small CSS trick that may be useful sometimes
we often use af:inputComboboxListOfValues to show large amount of data as List of Values
From Oracle Docs-
The inputComboboxListOfValues component allows a user to open a choice list and select from a list of values, in order to populate the LOV field (and possibly other fields) on a page.
Users can either select a value from the list in the dropdown panel or click the "Search..." link at the bottom of the panel to launch the "Search and Select" dialog. The dialog enables users to search for specific values and select the desired value that should go into the LOV field on the base page. The choice list when opened could display various items in the following order with separators between each (if applicable).
Have a look at this -
here you see a link "more" on click this link a search dialog box appears , when you define a search criteria in lov at model level then this link appears as "search"
So to remove this link from combobox use this CSS
Now look at combo box , we are done
Also Check how to configure ADF Skin in Application - ADF Basics: Using CSS to change appearance of application (Skins and Styles in ADF Faces)
Cheers :)
Happy Learning
This post is about a small CSS trick that may be useful sometimes
we often use af:inputComboboxListOfValues to show large amount of data as List of Values
From Oracle Docs-
The inputComboboxListOfValues component allows a user to open a choice list and select from a list of values, in order to populate the LOV field (and possibly other fields) on a page.
Users can either select a value from the list in the dropdown panel or click the "Search..." link at the bottom of the panel to launch the "Search and Select" dialog. The dialog enables users to search for specific values and select the desired value that should go into the LOV field on the base page. The choice list when opened could display various items in the following order with separators between each (if applicable).
Have a look at this -
here you see a link "more" on click this link a search dialog box appears , when you define a search criteria in lov at model level then this link appears as "search"
So to remove this link from combobox use this CSS
af|inputComboboxListOfValues::search{ display: none; }
Now look at combo box , we are done
Also Check how to configure ADF Skin in Application - ADF Basics: Using CSS to change appearance of application (Skins and Styles in ADF Faces)
Cheers :)
Happy Learning