Hi,
I have issues with the TMSFMXGrid and how checkbox cells are displayed while filtering.
In our application we want to have columns with ONLY a checkbox, without the related text.
So just a checked or unchecked checkbox per column-cell.
Initially it shows up correctly, but when I filter the data in the grid using the header-dropdown option,
it sometimes goes wrong.
I could also reproduce this with the demo application
TMS Pack for FireMonkey Demos\Grid Feature Demos\Cell Controls
In the IDE I made the following changes to the grid:
* Options.Filtering.DropDown TRUE
* Options.Filtering.MultiColumn TRUE
* Options.Sorting.Mode gsmNormal
In the procedure TForm719.FormCreate(Sender: TObject); I made the following changes
* TMSFMXGrid1.Columns[2].ColumnType := ctCheckBox; // AddCheckBoxColumn(2);
Running the demo displays the grid as wanted.
When I Filter Column 5 using the dropdown button (I choose value 4)
you can see in column 2 that the top half still shows the checkboxes, while the bottom half shows the texts.
This doesn't seem to be correct.