Hello. I have a spring boot with vaadin start project with Groovy. Vaadin is working fine on this project. As per your directions, i added this dependency -
org.vaadin.patrik GridFastNavigation 2.5.6and this repository -
vaadin-addons https://maven.vaadin.com/vaadin-addonsNow, I’m able to import the GridFastNavigation classes and use them. I have coded as so -
FastNavigation nav = new FastNavigation(grid2)
nav.addRowEditListener({event ->
Notification.show('In Row Edit Event')
grid2.getDataProvider().refreshAll();
int rowIndex = event.getRowIndex();
if (rowIndex >= 0) {
Notification.show('INDEX: ' + event.getRowIndex() + ' EVENT: --> ' + event.getItem());
}
})
The above code is working and running, but when I open the Editor for the grid and edit a cell, the Event is not getting fired at all. Am I missing something?