Hi,
The easiest and fastest solution might be if you put html code in the database.
for example content of one cell should look like this:
| Code: |
<a href="www.mycompany.info">my company</a>
|
To make this work, you should comment out line 518 in components/com_grid/GridBuilder.php
If you use this solution, you have to expect problems with sorting of this column, because the sorting will be made according the whole text in the database field:'<a href="
www.mycompany.info">my company</a>', and not just 'my company'. So in fact your column will be sorted according to the link ('
www.mycompany.info') if you always use the same pattern for '<a href='.
Regards,
Tomaž