SmartGwt Nightly 6.1d.0.0 05/20/2017 12:58 +0000
Steps to reproduce
Take GridEnterNewRowSample from http://www.smartclient.com/smartgwt/...diting_new_row
Make the editor of the listgrid column "nameField" a RichtTextItem like this:
Expected behaviour:
On click "Edit New" button a new row is added to the listgrid and the richtextitem editor is focused.
Observed behaviour:
On click "Edit New" button a new row is added to the listgrid but the editor is neither shown nor focused. The editor is only show after clicking the respective cell at least twice.
Steps to reproduce
Take GridEnterNewRowSample from http://www.smartclient.com/smartgwt/...diting_new_row
Make the editor of the listgrid column "nameField" a RichtTextItem like this:
Code:
ListGridField nameField = new ListGridField("countryName", "Country"); // START INSERT final com.smartgwt.client.widgets.form.fields.RichTextItem prototypeRichtextEditor = new com.smartgwt.client.widgets.form.fields.RichTextItem(); nameField.setEditorProperties(prototypeRichtextEditor); // END INSERT ListGridField continentField = new ListGridField("continent", "Continent");
On click "Edit New" button a new row is added to the listgrid and the richtextitem editor is focused.
Observed behaviour:
On click "Edit New" button a new row is added to the listgrid but the editor is neither shown nor focused. The editor is only show after clicking the respective cell at least twice.
Comment