Edit all grid cells

Hi,

is it possible to edit a whole column in a vaadin grid.
My customer wants to search for some items and show them in a grid.

Then the user will copy this data to excel or something like that and alter some values.

Now my customer wants to mark a column in excel and copy it back to the grid and THAN should the user be able to save the data.

Do you think this is possible?

Best regards Daniel

That sounds more like something that would be done with Vaadin Spreadsheet than with Grid. Grid’s editor definitely isn’t designed to work on multiple rows at a time. Maybe you could catch the paste event on the client side, parse the items from the payload and update your Grid’s DataProvider with that data?

-Olli