0

I have a janus grid version3.5 in a Win Form. How to set focus on a column in Filter Row?

Wiktoria Prusik
  • 840
  • 4
  • 15
hasan110
  • 3
  • 5

1 Answers1

0
GridEXRow FRow = grdTest.FilterRow;
if (FRow != null)
{
  grdTest.Row = FRow.RowIndex;
  grdTest.Col = grdTest.RootTable.Columns["ColumnName"].Index
}

If you want to filter the grid with any specific value then :

grdTest.Row = grdTest.FilterRow.Position;
grdTest.SetValue("ColumnName", "FilterValue");
Makesh
  • 335
  • 4
  • 15