hi,
we have a listgrid and we use setAlwaysShowEditors(true) and one row must be shown as a textarea. But if I add the following code:
ListGridField governmentField = new ListGridField("government", "Government", 175);
TextAreaItem textAreaItem = new TextAreaItem();
textAreaItem.setHeight(70);
governmentField.setEditorProperties(textAreaItem);
than the textarea-editor is only shown, if I click into the cell. So the property alwaysShowEditors=true is ignored on that column.
Is this supported, or maybe we have set another property which interferes this?
(we have a big smartgwt-application with smartgwt-5.0-2015-08-20).
Regards,
Marco
we have a listgrid and we use setAlwaysShowEditors(true) and one row must be shown as a textarea. But if I add the following code:
ListGridField governmentField = new ListGridField("government", "Government", 175);
TextAreaItem textAreaItem = new TextAreaItem();
textAreaItem.setHeight(70);
governmentField.setEditorProperties(textAreaItem);
than the textarea-editor is only shown, if I click into the cell. So the property alwaysShowEditors=true is ignored on that column.
Is this supported, or maybe we have set another property which interferes this?
(we have a big smartgwt-application with smartgwt-5.0-2015-08-20).
Regards,
Marco
Comment