Hi,
In my scenario, I've a remove btn which on clicking should remove the rows.(I cannot rebind the grid). I manually have to
clear the controls.
So, I do the foll:
foreach(GridDataItem obItem in Radgrid1.SelectedItems)
{
obItem.Controls.Clear();
}
But the problem with this approach is , though it clears the rows . the grid has an empty row. I don't need the row at all.
When user selects a row and clicks remove btn, he should not see the contents as well as grid lines. pls help me with code.
Note: pls I cannot rebind. so , give me a diff approach.