Hi,
How can i disable a UltraGridRow of UltraWebGrid?
Hello thesubbu ,
I’m just following up to see if you’ve been able to resolve your issue. If you have any questions or concerns or if you need further assistance please let me know.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support
Thank you for posting in our forum.
Do you need it to not be editable? If that’s the case you can get each of the cells of that row and set their AllowEditing property to false.
For example:
foreach (UltraGridCell cell in mainGrid.Rows[0].Cells)
{
cell.AllowEditing = AllowEditing.No;
}
Let me know if you have any questions or I’ve misunderstood your issue.
Developer Support Engineer II