Can anyone tell me why all of my links are blank? I am now just trying to get a static link to show up. No matter what, if I set a value in col["link"] then the
entire column goes blank.
Here is the snippet from the code for this column;
$col = array();
$col["title"] = "Destination";
$col["name"] = "destination";
$col["width"] = "100";
$col["link"] = "http://localhost/";
$col["linkoptions"] = "target='_blank'";
$cols[] = $col;
2 Answers
Just an update.
I am pretty sure the problem only exists when using a local data source.
You can have html <a>…</a> link in array data value.
$data[$i]['more_options'] = "<a ….></a>";
Your Answer