I have a WHDG on my page and I am trying to resolve which cell the user clicks on.
I enabled activation on my grid, and set a clientside event where i can see what is clicked from javascript. I also added a eventhandler for Activation.ActiveCellChanged to handle the event server side, but it never gets called.
How can I have a event fired server side with the new selected cell?
Hi Dotcomdist,
You could try setting AutopostbackFlags on either Activation or Selection to true to have the server side event fire immediately after the client side event. Whether it is async or full postback is controlled by EnableAjax of the grid itself.
regards,
David Young
AgentD5,
Thanks for the reply. I have the post back working for client and server side now. (Oddly it worked for selection but not activation using the same steps)
But I am now trying to limit the client-side event to only fire for certain columns. I assume this needs to be done in the JavaScript function but I can't seem to resolve the column key for the selected cell's column.