Hi All,
I want to hide a column in RadGrid when Autogenerated column is true.
I am using DataRelation in RadGrid
Thanx in Advance
Bharat Rathore
Hi All,
I got the Solution.
I want to hide a column in RadGrid when Autogenerated column is true.
I am using DataRelation in RadGrid
Thanx in Advance
Bharat Rathore
Hi All,
I got the Solution.
protected void RadGrid1_ColumnCreated1(object sender, GridColumnCreatedEventArgs e)
{
if (e.Column.UniqueName == "column name")
{
e.Column.Visible =
false;
}
}