Hi,
We use vs 2012 with 2013 Q1 RadGrid. I am trying to delete row when looping thru rows in code behind in private routine like this:
while (curRowIdx < rowCount)
{
if (curTransRow["ID"].Text == 100)
curTransRow.Remove(); -------------- how to do this.
}
Thanks,
Prathiba
We use vs 2012 with 2013 Q1 RadGrid. I am trying to delete row when looping thru rows in code behind in private routine like this:
int
rowCount = pRgdTrans.Items.Count;
int curRowIdx = 0;
while (curRowIdx < rowCount)
{
GridDataItem
curTransRow = pRgdTrans.Items[curRowIdx];
if (curTransRow["ID"].Text == 100)
//delete row.
curTransRow.Remove(); -------------- how to do this.
}
Thanks,
Prathiba