I've encountered a puzzling issue with my gridview. I've successfully added onclick
events to a checkbox column using the code:
cb.InputAttributes.Add("onclick", "checkClick()");
Everything was working perfectly until the moment the user clicks the save button on the form, located within the updatepanel
. Suddenly, the checkboxes' onclick
event stops firing!
Could this be related to an ASP.NET AJAX problem?
The strange part is that I can see the onclick
event in the source code, but it just won't trigger.
I'm stuck and in need of assistance!