I currently have firstGrid that has some records, I have set a warning on removal message so a dialog box pops up when I click the delete button. How do I make it so secondGrid refresh when I confirm the delete on firstGrid?
Code:
firstGrid.setWarnOnRemoval(true); firstGrid.setWarnOnRemovalMessage("Delete?");
Comment