Hi,
I tried latest SmartGwt 6.0 build from 09.04.2016. The form items do not appear correct in Toolstrip bars (see Screenshots).
Thanks and best regards
Andy
Wrong Appearance of FormItems:

Correct appearance in previous builds (e.g. 05.04.2016, same code):

I tried latest SmartGwt 6.0 build from 09.04.2016. The form items do not appear correct in Toolstrip bars (see Screenshots).
Thanks and best regards
Andy
Wrong Appearance of FormItems:
Correct appearance in previous builds (e.g. 05.04.2016, same code):
Code:
FormItem eventItem = new FormItem( "eventItem" );
eventItem.setTitle( GWebAdmin.lang.filterEventByName() );
eventItem.setTitleOrientation( TitleOrientation.TOP );
FormItem checkIncludeFest = new FormItem( "checkIncludeFest" );
checkIncludeFest.setTitle( "Show Fest");
checkIncludeFest.setType( "boolean" );
checkIncludeFest.setTitleOrientation( TitleOrientation.TOP );
checkIncludeFest.setDefaultValue( false );
ToolStrip toolBarTop = new ToolStrip();
toolBarTop.setWidth100();
toolBarTop.addFormItem( eventItem );
toolBarTop.addFormItem( checkIncludeFest );
toolBarTop.draw();
Comment