I've looked at a lot of posts asking this same question and still can't seem to find one with the answer. I want to force the pick list to be shown for a SelectItem when some event occurs other than the user clicking on selector. I've tried showPicker() which doesn't seem to do it. The javadocs for that are a little vague so I'm not sure if that is what that method is supposed to do since it seems to be tied to showPickerIcon.
I've also seen an old post referring to a method on SelectItem to showPickList() which seems to be exactly what I need, but SelectItem has no such method.
Code:
Method to show a picker for this item. By default this method is called if the user clicks on a pickerIcon, shown by setting this.showPickerIcon to true. May also be called programatically. Default implementation lazily creates a 'picker' from the set of defaults defined on this FormItem.
Comment