Hello,
I am using an UltraGrid of Infragistics Net Advantage 2008 in my application. I need to bind a cell with an image from database.
I tried to convert the binary data to image and set it to the cell appearance.Image property. Now the cell is displaying with Image and Byte array.
I would like to display only the image in the cell. Please help me.
Many Thanks.
What is the data type of the image column? What you might have to do is create an unbound column of type Image (or Bitmap) and hide your bound column. In the InitializeRow event you could convert the binary data to an image and assign it as the value of the cell in the unbound column.
-Matt