Good Day All
i tried to google and i got Win Examples and that did not work for me. Am using version 8.1 of ultrawebgrid and i want to make 3 Columns as read only.
Thanks
Hi,
You can use AllowUpdate property of column object. You can set this property after grid is bound with data source.
Try following code
protected void grid_InitializeLayout(object sender, LayoutEventArgs e)
{
grid.Columns[0].AllowUpdate = AllowUpdate.No;
grid.Columns[1].AllowUpdate = AllowUpdate.No;
}
Let me know if this helps you.
Greetings
Thank you very much Sir.
It worked.
Can you please help me with another Question that i posted on a Separate thread in this Section.
Thanks Resolved