Hello. I have a spring boot with vaadin start project with Groovy. Vaadin

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.6

and this repository -

vaadin-addons https://maven.vaadin.com/vaadin-addons

Now, 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?

It sounds like you have not recompiled the widgetset, thus the client side part of the add-on is missing.

Yes, that was it. I did a sample maven vaadin project from the application archetype and compared it’s pom.xml with my spring boot vaadin starter’s pom.xml and noticed that as per your hint above, the spring boot starter project didn’t have the maven vaadin plugin with the compile widget set goal in the pom.xml. It seems to be working now. Thank you very much for your help!