Hello,
it appears that Window.setShowTitle(false) triggers the title to always be visible even when using Window.setHeaderControls() in SmartClient/SmartGWT Framework (v11.1p_2017-10-20/Enterprise Deployment 2017-10-20)
This test
looks like this
Is there a workaround?
it appears that Window.setShowTitle(false) triggers the title to always be visible even when using Window.setHeaderControls() in SmartClient/SmartGWT Framework (v11.1p_2017-10-20/Enterprise Deployment 2017-10-20)
This test
Code:
Window window = new Window(); window.setWidth(400); window.setShowTitle(false); Label label = new Label("Label"); window.setHeaderControls(label); window.show();
Is there a workaround?
Comment