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
close icon

Repost : Problem with CustomFilter -Updated

Hi , As part of our application , we are using the essential datagrid to display the data from the Database. After the user chooses a custom filter , clicking anywhere on the grid pops up the custom filter dialog again. Then the user needs to apply the same filter he had applied earlier and click on OK. In our application , we have checkbox in one of the cell. So , after performing a custom filter action, if the user tries to click the checkbox option , the custom filter pops up again. We are using 1.6.1.0 version of Sync fusion. Can you please suggest a solution to this problem. Thanks and Regards, Jaya

1 Reply

AD Administrator Syncfusion Team July 9, 2004 09:54 AM UTC

You might try handling CurrentCellCloseDropDown and explicitly setting the current cell there to see if this avoids the problem you are having.
private void gridDataBoundGrid1_CurrentCellCloseDropDown(object sender, PopupClosedEventArgs e)
{
	GridCurrentCell cc = this.gridDataBoundGrid1.CurrentCell;
	if(cc.RowIndex == 1)
	{
		cc.MoveTo(2, cc.ColIndex);
	}
}
I do not think this problem is present in our later releases, so you may want to consider upgrading to 2.0.x. If the above does not work for you, and you cannot update for some reason, if you will post a sample project showing the problem, then maybe we can suggest something else.

Loader.
Live Chat Icon For mobile
Up arrow icon