How to focus on one Column of Filter Row in winform janus grid

804 Views Asked by At

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

1

There are 1 best solutions below

4
Makesh On BEST ANSWER
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");