We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

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.
Live Chat Icon For mobile
Up arrow icon