I have a devexpress gridview where I use a select to make an operation over the data, that is opening another page. This select is replaced with dropkick jquery. It's working perfectly on the loading and the expansion of the detail row, but when I collapse the row I don't find an event like detail_row_collapsed
to call my script.
Any ideas?
I managed it using the ClientSideEvent "EndCallback" on the gridview only, calling my script from there.
<ClientSideEvents
EndCallback="MyDropkickScript" RowClick="OnRowClick" DetailRowExpanding="OnDetailRowExpanding" DetailRowCollapsing="OnDetailRowCollapsing"
/>
The problems was by using too much ClientSideEvents in both GridView and DetailView.