Hi,
I'm trying to gain access to the RadGridView Filter boxes contents programmaticaly. I.E. when the user enter text in the filter boxes directly underneath the column heading I want to be able to access that text programmaticaly.
I've tried the following:
foreach(GridViewCellInfo cellInfo in myRadGridView.MasterGridViewInfo.TableFilteringRow.Cells)
{
if(cellInfo.Value != null)
MessageBox.Show(cell.Value.ToString());
}
Values are always null
Thanks!
Miguel de Sousa
I'm trying to gain access to the RadGridView Filter boxes contents programmaticaly. I.E. when the user enter text in the filter boxes directly underneath the column heading I want to be able to access that text programmaticaly.
I've tried the following:
foreach(GridViewCellInfo cellInfo in myRadGridView.MasterGridViewInfo.TableFilteringRow.Cells)
{
if(cellInfo.Value != null)
MessageBox.Show(cell.Value.ToString());
}
Values are always null
Thanks!
Miguel de Sousa