Hi
i have follwoing 4 lines of C# Code in my file. The Third Line is to Make Headers static of grid View. Code not attached for this.
If i disable line 3 i am good. (If i check Header Checkbox all checkboxes down below will be checked.)
if i enable line 3 then nothing happens. if i debug the code, debugger goes to Java Script file for every row. it also bring id of every checkbox that is ib row. But it doesn't check all check boxes at the ned.
Any help would be appreciated.
Than kYou
C# Code
1) gvNewAffinityStrategy.DataSource = gridViewTable;
2) gvNewAffinityStrategy.DataBind();
3) ScriptManager.RegisterStartupScript(Page, this.GetType(), "Key", "<script>MakeStaticHeader('" + ABC.ClientID + "', 500, 1200 , 40 ,true); </script>", false);
4) CheckALL();
Go to the complete details ...