select row after filterBar

Hi, I have a databoundgrid with the filterBar object. After I select something in the filter bar, how can I set the focus in the first grid''s row, after the filter bar ? Thanks, Jose Melo

1 Reply

AD Administrator Syncfusion Team September 16, 2004 11:16 AM UTC

Try handling the CurrentCellCloseDropDown event and moving the currentcell there.
private void gridDataBoundGrid1_CurrentCellCloseDropDown(object sender, Syncfusion.Windows.Forms.PopupClosedEventArgs e)
{
	GridCurrentCell cc = this.gridDataBoundGrid1.CurrentCell;
	if(cc.RowIndex == 1)
		cc.MoveDown();
}

Loader.
Up arrow icon