Hi
I need to disable arrows navigation in an editable listgrid. setArrowKeyAction has no influence if user double-clicked on a row and entered an editable mode. Am I doing something wrong? Is there another workaround?
I need to disable arrows navigation in an editable listgrid. setArrowKeyAction has no influence if user double-clicked on a row and entered an editable mode. Am I doing something wrong? Is there another workaround?
Code:
grid = new ListGrid();
grid.setAutoFitData(Autofit.VERTICAL);
grid.setAutoHeight();
grid.setCanEdit(false);
grid.setArrowKeyAction("none");
grid.setEditEvent(ListGridEditEvent.DOUBLECLICK);
ListGridField nameField = new ListGridField("name", "Name");
nameField.setRequired(true);
ListGridField continentField = new ListGridField("description", "Description");
grid.setFields(nameField,continentField);
grid.setAutoFetchData(true);
Comment