Hi Isomorphic,
SmartGwtVersion: SmartClient Version: v8.3p_2012-11-26/LGPL Development Only (built 2012-11-26)
Browser: IE9
CSS:
When I changed the background color of the spinner and when it is disabled the font appears not correct, please check the screen-shot.
Thanks
SmartGwtVersion: SmartClient Version: v8.3p_2012-11-26/LGPL Development Only (built 2012-11-26)
Browser: IE9
Code:
VLayout layout = new VLayout();
layout.setWidth100();
layout.setHeight100();
layout.setBackgroundColor("#474747");
SpinnerItem spiner = new SpinnerItem("test", "test");
spiner.setTextBoxStyle("testStyle");
spiner.setDefaultValue("5000006585588828");
spiner.disable();
DynamicForm form = new DynamicForm();
form.setItems(spiner);
layout.addMember(form);
layout.draw();
Code:
.testStyle,
.testStyleDisabled {
background-color: #474747;
}
Thanks
Comment