I am using RadGrid. How am I able to make whole column readonly or editable false.
Here I get the column
protected void RadGrid1_PreRender(object sender, EventArgs e)
{
var colName = RadGrid1.MasterTableView.GetColumn(column.ColumnName);
}
But there not property to set readonly true/false.
Is there any way I can set this column to editable false?