Click here to Skip to main content
15,902,770 members

Comments by VinKot (Top 5 by date)

VinKot 25-May-17 13:48pm View    
i am creating them in C# only after Bind the gridview in RowBound() event. These are dynamically added to GridView
VinKot 18-May-17 3:51am View    
In my case, i can't make any changes in client side as the template controls and gridView are creating dynamically in runtime [in LoadGridViewSignatoryGroup()]
VinKot 17-May-17 11:00am View    
Yes, it's being called on postback. I verified by putting breakpoint while debugging.
VinKot 17-May-17 10:46am View    
After PostBack i am setting the event in GridView_RowBound().

Everytime on PostBack , template controls are getting created by Grid and it calls then RowBound event. But not hitting the CheckedChanged().

Copied my source code above for your reference.
VinKot 17-May-17 10:21am View    
Thanks for your comments, i am actually a Windows app developer and new to web app. I better understand what you mentioned.

Could you please clarify below Query ,

I have placed the Grid (which has the Checkbox as template field) inside the updatePanel, so on AutoPostBack Page_Load() event is fired, does it mean entire page is loading again?

2) After setting AutoPostBack to TRUE, on CheckBox click, CheckedChanged event is fired. Upon UnCheck it's not triggred.

Later, i set Checked = True on page load, now event is triggered when Unchecked and not when Checked.

May i know the reason for this behavior ?