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?
I'm not sure I am following you.
Changing the checkbox images in the grid will never have any effect on the behavior of the filtering. Are you saying that the problem you are experiencing does not occur if you remove the images?
Also, changing the value of a grid cell will never automatically re-filter that row. If that's happening, then something in your code must be refreshing the filtering explicitly.
The same thing applies to changing a value in a cell affecting the Filter Row. The cell values do not affect the filtering. If that's happening, it must be something in your code doing that.
Hi Mike,
I attached small sample project.
Please try:
1. Run application.
2. Click on cell at the intersection row-filer and column "bool". Grid will be filtered. It is correct.
3. Click on cell at the intersection other row (not row-filter) and column "bool". Grid will be filtered again. It is incorrect.Thanks.
I have create a case for you with referance number CAS-67190-925T5F and I`ll update you with further information through this case.
Regards
Thank you for the sample.
This is clearly a bug in the grid. I have forwarded this thread over to Infragistics Developer support so they can create a case for you and write this issue up for developer review.