Is it possible to have a cell in the grid display some textual content followed by a line break and then a series of clickable hyperlinks?
Something like the image below:
Thanks-Szymon
Yes, the UltraFormattedTextEditor control supports that, so a grid column with a Style of 'FormattedTextEditor' should as well. You would assign a value like this to the cell:
string cellValue = "<a title=\"Click for link1\" href=\"www.link1.com\">link1</a>"; cellValue += "<a title=\"Click for link2\" href=\"www.link2.com\">link2</a>"; cellValue += "<a title=\"Click for link3\" href=\"www.link3.com\">link3</a>";
I apologize I should have been more specific. I'd like the links to invoke handlers in my code, not link to a web page.