Great Component, is there a way to implement unsaved changes warning?
The add-on doesn’t have this functionality. However, you can use a custom CrudFormFactory
to implement this. You could, for example, extend AbstractAutoGeneratedCrudFormFactory
and override buildCancelButton(ClickEvent<Button>>)
to add a click listener that checks if binder.hasChanges()
.
Thanks Alejandro