Hello,
I am new to this so please help me if possible. I am using smartgwt ee 3.0p trial version to see how it can be helpful in our project.
I am having a ListGrid attached with Datasource using userDS.ds.xml.
Now when i click on "Remove" icon in Grid its removing the record very well and also grid getting updated very well.
But now i want to capture the Remove Event. So when i click on "Remove" it should capture the event and application should get notify that "Remove" operation had been done successfully (as i want to do some java method calls after the successful removal of record).
I know this can be silly question, but i am not able to find it. I gone through docs and forums. But not able to get the answer.
Thanks in advance. :)
I am new to this so please help me if possible. I am using smartgwt ee 3.0p trial version to see how it can be helpful in our project.
I am having a ListGrid attached with Datasource using userDS.ds.xml.
Code:
ListGrid usersGrid = new ListGrid(); usersGrid.setDataSource(DataSource.get("userDS")); usersGrid.setAutoFetchData(true); usersGrid.setShowFilterEditor(true); usersGrid.setCanEdit(true); usersGrid.setCanRemoveRecords(true);
But now i want to capture the Remove Event. So when i click on "Remove" it should capture the event and application should get notify that "Remove" operation had been done successfully (as i want to do some java method calls after the successful removal of record).
I know this can be silly question, but i am not able to find it. I gone through docs and forums. But not able to get the answer.
Thanks in advance. :)
Comment