I want to access the rows of a PrimeFaces Extensions Sheet, after I have pasted data from an excel sheet into it. Ideally, I want to iterate through the rows of the sheet that contain data (as the values in the row should make up one object).
I have tried using this statement
List<SheetUpdate> updates = sheet.getUpdates();
intending to iterate through it to access the row data with
update.getNewValue();
, but updates
is always empty even if ajax detects the change (paste action).
Could you suggest a way to access a specific row of a PrimeFaces Extensions Sheet?