I have a composite widget, which contain many widgets (inside HorizontalPanel). How to disable all widgets inside HorizontalPanel or inside this composite? I can’t find setEnabled() method in Composite or panels
I have a composite widget, which contain many widgets (inside HorizontalPanel ). How to
Share
The only way to do it is to recursively get all children of the panel and call
setEnabled(false)on each widget, which extendsFocusWidget