You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider use case where you have e.g. button or other method to add a new row to the editor. You would like to programmatically open the cell in editing mode on the newly created row.
e.g.
gridPro.editCell(..);
Should it have overloading for different ways of indicating the cell, e.g. int, int for column, row index, String, int for column id, row index, String, T for column id, item.
Consider use case where you have e.g. button or other method to add a new row to the editor. You would like to programmatically open the cell in editing mode on the newly created row.
e.g.
gridPro.editCell(..);
Should it have overloading for different ways of indicating the cell, e.g. int, int for column, row index, String, int for column id, row index, String, T for column id, item.
gridPro.editCell(0,0);
gridPro.editCell(columnId,item);
gridPro.editCell(columnId,0);
(This was possible with Vaadin 8 using Grid FastNavigation add-on).
The text was updated successfully, but these errors were encountered: