Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

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

    Hello All,

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

    Thanks in advance.

    #2
    Any luck in this?

    Comment


      #3
      Did you try:

      Code:
      SelectItem select = new SelectItem();
      // ...
      select.showPicker();
      Hope this helps.

      martin

      Comment

      Working...
      X