Posted 30 March 2025, 12:59 am EST
I need to show the images in the cell on specific conditions, Is there any alternative to SetCellImage?
Forums Home / ComponentOne / WPF Edition
Posted by: david on 30 March 2025, 12:59 am EST
Posted 30 March 2025, 12:59 am EST
I need to show the images in the cell on specific conditions, Is there any alternative to SetCellImage?
Posted 31 March 2025, 5:53 am EST
Hi David,
To show images in specific cells of a column, you can inherit the CellFactory class to create your custom cell factory and override its CreateCellContent method. In the method, you can check for your specific conditions and set the image to the cell.
See the attached sample project for reference - ImageConditional.zip
Best Regards,
Kartik
Posted 1 April 2025, 9:13 am EST
Hi Kartik
I am using Flexgrid, not c1flexgrid.
The grid is unbound.
I have several columns, My requirement for setting Image is not specific to certain columns.
I need to set some alert Image next to the text for specific cells only depending on conditions.
Can you please give me another example?
Thanks and Regards
David
Posted 2 April 2025, 6:42 am EST
Hi David,
>> I am using Flexgrid, not c1flexgrid.
We have converted the project to use the FlexGrid control (.NET 8).
>> The grid is unbound.
Our sample already uses the grid in unbound mode, and manually adds rows and data into the grid.
>> I need to set some alert Image next to the text for specific cells only depending on conditions.
To display text and image in the same cell, you need to create a custom CellTemplate using a TextBlock and an Image. Then, use the CreateCellContent method to set the text and image dynamically at runtime.
Please refer to the updated sample project for reference - ImageConditional_Updated.zip
In case you still face any issues, please update this project to show your implementation and the issue you are facing, so we can investigate further and assist you better.
Best Regards,
Kartik