Question

Photo of Amit K

0

Is there any example available to implement Edit/Delete button functining in rockGrid with each row?

Hi, Is there any example available to implement Edit/Delete button functining in rockGrid with each row?


I am working on DynamicData.ascs grid, Here i have schedular Grid, Grid shows edit/delete button, How may i handle edit/delete button event for specific page grid event because DynamicData page is common and might be use by more other pages?

  • Photo of David Stevens

    0

    You'll need to wire up an event handler to the button, this is a fairly common .NET pattern.

        var deleteField = new DeleteField(); 
        deleteField.Click += gRegistrants_Delete; 
        grid.Columns.Add( deleteField );