Skip to main content

Posts

Showing posts with the label autosuggest adf

Custom LOV with AutoSuggest implementation in ADF

Prerequisites of this implementation : ViewObject (in the example it is "MyViewObject") Some utility is used in the example, check my other blogs "ADF  Utility" #1. Create LOV Listener class This class will open the LOV window in a popup and also when user selects a row and click OK in the popup, it will set the value property of the input Text ui component where this LOV is invoked from. // Add the getters and setters of all the class level attributes. // I have removed them from this example to shorten the length of the blog. // For "getUIComponent()" check my other blog to find a UI Component from managed bean public class MyLOVListener {         /**      * ID of the popup where af:table is defined      */     private String popupId;     /**      * ID of the inputText component where the selected value      * from the popup shou...