Announcement

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

    How to override showPicker of SelectItem

    I would like to override the default behavior of showPicker of an SelectItem, something like this:

    Code:
    @Override
    public void showPicker() {
    	if (someFlag)
    		showCustomPicker();
    	else
    		super.showPicker();
    }
    but since the gwt-method is of course never called by the js-widget it doesn't work.
    Is there some other way to do this?
Working...
X