Hi,
Is there a way of highlighting the text in the cell ? I do not want to set the backcolor property of the cell itself but I just want to highlight the cell's contents
This is text
Thanks
e.p.
Set the Style of the column to FormattedText. Then you can format the text in the cell using the XML formatting that the UltraFormattedTextEditor control uses. So you could set the Value of a cell like so to acheive what you have above:
<span style="background-color:Yellow;">This is text</span>
If the grid is databound then the formatting XML will be written to the database after save !!
Is there a way to do the highlight without modifying the text in the cell.