Smartgwt Version : SmartGWT 3.0 EE
I have a listgrid with client only data source added to it.
To facilitate the functionality for removing records via UI I did the following.
Now I want to listen to events for data removal. I see that the "DataArrivedHandler" gives notification for any changes in the list grid but it does not specify whether the data is removed or data is added.
Is there any other "out of the box" handler provided by SmartGWT API's to listen to dataremoved events.
I have a listgrid with client only data source added to it.
To facilitate the functionality for removing records via UI I did the following.
Code:
setCanRemoveRecords(true);
Is there any other "out of the box" handler provided by SmartGWT API's to listen to dataremoved events.
Comment