Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Calling refresh on another grid after an action on current grid

    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?");

    #2
    Hi kqappleq,

    please search the forums. AFAIR the solution is to set canRemoveRecords(false) and have an own image-column/ListGridFields for this. There you can have ClickHandlers and Callbacks.

    Best regards,
    Blama

    Comment

    Working...
    X