Currently, when I load a RadGrid, I'm able to get the parent rows to all be editable by using the following code in the PreRender event:
However, my RadGrid has a self-heiracrchy and when I drop down to the next level, and all subsequent levels, those rows are read only. But, the parents are still editable.
My question has two parts. First, how can I get the children, grandchildren, etc. to be editable? And, if I don't have paging enabled, how can I get these rows to be editable (i.e. RadGrid1.PageSize isn't set).
Thanks!!
Jeremy
for (int i = 0; i < RadGrid1.PageSize; i++) {
RadGrid1.EditIndexes.Add(i);
}
RadGrid1.Rebind();
However, my RadGrid has a self-heiracrchy and when I drop down to the next level, and all subsequent levels, those rows are read only. But, the parents are still editable.
My question has two parts. First, how can I get the children, grandchildren, etc. to be editable? And, if I don't have paging enabled, how can I get these rows to be editable (i.e. RadGrid1.PageSize isn't set).
Thanks!!
Jeremy