In a cell formatting event, I need to hide a row based on a cell value. Here's my code:
cellElem.RowElement.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
However, the row is not collapsed. It's hidden, but still takes up real estate on the grid. I also tried setting Visibility and IsVisible on the RowInfo object and it did not product the correct behavior either.