Hello Suresh,
To workaround the issue I can suggest to set the Checked property of the columns after binding the grid as shown below:
private void Form1_Load(object sender, EventArgs e)
{
try
{
BindColumns();
radGridView1.DataSource = FillDatatoGrid();
GridViewCheckBoxColumn chkSelectAll = (GridViewCheckBoxColumn)this.radGridView1.Columns["SelectAll"];
chkSelectAll.Checked = Telerik.WinControls.Enumerations.ToggleState.On;
chkSelectAll.Checked = Telerik.WinControls.Enumerations.ToggleState.Off;
}
catch (Exception ex)
{
throw ex;
}
}
I hope this helps.
Regards,
Nadya
Progress Telerik