Hi
i have the following piece of code
<ClientSideEvents RowDblClick="function(s, e) { s.PerformCallback('dblclick|' + e.visibleIndex); }"/>
the problem is that it executes the function ASPXGridView1_CustomCallback , what i am after is for it to execute the page_load of the form so that it does a few checks ..
something like the following
<ClientSideEvents RowDblClick="function(s, e) { s.AutoPostBack('dblclick|' + e.visibleIndex); }"/>
is this somehow possible
thanks
mel