Hello guys,
I’m using vaadin version 7.5.10. Now a ComboBox which is bound with a FieldGroup is always read-only. I cant make it not read-only by explicitly setting ComboBox.setReadOnly(false).
Simple code snippet:
[code]
FieldGroup f = new FieldGroup(partnerItem);
ComboBox cb = new ComboBox();
f.bind(cb, “partnerType”);
Window w = new Window(“For check”);
w.setHeight(“300px”);
w.setWidth(“300px”);
w.setContent(cb);
cb.setReadOnly(false);
UI.getCurrent().addWindow(w);
[/code]This wasn’t happened before
Any help will be appreciated :).