I know that double clicking to edit a row is fine, but i’ve been requested to add in an edit button since it’s not obvious for the user to double click if they want to edit a row
In Vaadin 7, I used A generatedpropertycontainer:
grid.getColumn("edit").setRenderer(new ButtonRenderer(e -> resultsGrid.editItem(e.getItemId())));
But I’m unable to get the same effect in Vaadin 8??
I understand how to get it to delete, and how to add a column, and how to create a button in the grid, what I don’t understand is how to get the row editor to appear. Where you can edit a row?