URL LINKING COMPLEXITY
Patrick E
July 27,
That doesn't work, at least when loading the data from a PHP script. I used the example that comes with the grid. If an array is set like this:
$array = array(1, "<a href='http://somelink.com'>here</a>");
this will output the following javascript array:
var data = [
["1", "<a href=\'http://somelink.com\' >here</a>", ],
];
And this will show in the grid exactly "<a href= (blabla) >" and not actually the link. This is because the function activewidgets_html() calls htmlspecialchars(). Therefore, a quick workaround for this problem is to remove the line that invokes this function.
metator at netcabo dot pt
August 9,
I don't know php but should you escape the charecters in php to stop it converting them?
August 9,