Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
440
Strange behaviour
posted

Hi,

I have boolean column in grid. I show image in cells with value = true. And I show empty cells if cells have values = false.

protected void Grid_InitializeLayout(object sender, InitializeLayoutEventArgs e)
{

[skip]

CheckEditor checkEditor = (CheckEditor) gridColumn.Editor;
checkEditor.CheckedAppearance.Image = _image;
checkEditor.Style = EditCheckStyle.Custom;

}

I use filter-row in grid.

Scenario:

1. Click on filter-row in this cell. Grid will be filtered. - It is ok.

2. Click  on other row on cell in this column. Cell in filter-row will be changed and grid will be refiltered. - It is strange and incorrect.

3. Click  on other row on cell in this column. Cell in filter-row will be changed again and grid will be refiltered again. - It is strange and incorrect.

 

If I use EditCheckStyle.Button or EditCheckStyle.Check grid works correct.

It reproduced in Infra 10.1 and 10.3. (I didn't test 10.2).

How I can fix it?