This question is locked. New answers and comments are not allowed.
hi
how can i iterate a radgridview rows
my need is to collapse all the lines that contain a input value
i tried somthing like this
how can i iterate a radgridview rows
my need is to collapse all the lines that contain a input value
i tried somthing like this
foreach (RadRowItem _row in Grid.RowInEditMode.Item)
{
if (_row.Cells[ColumnIdentifier].Content.ToString() != SelectedValue){
_row.Visibility = Visibility.Collapsed;
}
}
but the problem here is i can't iterate