how to notify user on inline editable column

Hi,
I am using a editable column for my table together with “save” and “remove” actions. I want a notification message (something like “please click save to update changes” ) when user type/edit something in the editable text field before moving to other rows.

1

2

Hi,

You can add a datasource listener and show a notification when any item property is changed.


annotationTypesDs.addItemPropertyChangeListener(e ->
		showNotification("Please, click save to update changes"));

Regards,

Gleb.