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
355
Multiple images and texts in cell
posted

Hi,

 

I am using infragistics 9.2 and I want to put multiple images and texts in one cell like this :

How can I do this, perhaps using CreationFilter ??

Regards.

Parents
No Data
Reply
  • 469350
    Offline posted

    Hi,

    A CreationFilter would be one way to do this.

    Another option would be to use formatted text. The UltraFormattedTextEditor control can do what you have shown here by embedding images in the text. If you want to try it and see what it looks like, put an UltraFormattedTextEditor on the form and go to the Value property. Clicking the ellipsis will take you to the formatted text editor where you can edit text just like a word processor. You can set up your text with the embedded images and then look at the Xml that was generated. That will give you an idea of how to build the strings you will need for the Value of your grid cells.

    To get the grid to recognize the Xml, you just set the column.EditorComponent to an instance of the UltraFormattedTextEditor.

Children