I was wondering if there is a way to put only one column in edit mode.
I have tried setting the ReadOnly property to true except the column I want to be in Edit mode. I then use:
for (int i = 0; i < RadGrid_Main.PageSize; i++)
{
RadGrid_Main.EditIndexes.Add(i);
}
This achieves the effect I am looking for, but then the grid shows the Edit skin for every row. I want to grid to look normal except show edit boxes for only 1 column. Is there any way around this?
Thanks,
Lucas
I have tried setting the ReadOnly property to true except the column I want to be in Edit mode. I then use:
for (int i = 0; i < RadGrid_Main.PageSize; i++)
{
RadGrid_Main.EditIndexes.Add(i);
}
This achieves the effect I am looking for, but then the grid shows the Edit skin for every row. I want to grid to look normal except show edit boxes for only 1 column. Is there any way around this?
Thanks,
Lucas