Search code examples
javacomboboxsmartgwt

How to open pickList of ComboboxItem/SelectItem manually/programatically using SmartGWT?


I'm using SmartGWT 2.5 with Java & Mozilla FF 3.6.x. I want to open pickList of ComboboxItem or SelectItem manually that means programatically. Is it possible? It's OK if I need to use JavaScript to achieve this. Any hint or solution is appreciated.


Solution

  • I finally got the answer. Posting it here might be useful to others. I've used

    comboxItem.showPicker();
    

    to achieve manual opening of picklist of ComboboxItem.