“updateSelection(…)”
lead to a “NoSuchFieldException” if the ComboBoxMultiselect is subclassed.
“updateSelection(…)”
lead to a “NoSuchFieldException” if the ComboBoxMultiselect is subclassed.
Hi Jürgen,
i don’t know, whether its important for you by now.
But you have to override the following method in your derived class by the following:
@Override
protected Class<?> getSelectionBaseClass() {
return this.getClass().getSuperclass().getSuperclass();
}