Hi Abu.
I was wondering if you can help me.
$col = array();
$col[“title”] = “TITLE”;
$col[“name”] = “titlebd”;
$col[“width”] = “10”;
$col[“editable”] = true;
$col[“default”] = “Capture”;
$col[“align”] = “center”;
$liga = “file_to_open.php?id_file_to_open={id}”;
$col[“link”] = $liga;
$col[“search”] = false;
$cols[] = $col;
I would like to know how to open the new grid link on a new tab of the browser.
Thanks
1 Answers
Pasting from docs: http://www.phpgrid.org/docs/column-options/#make-the-data-in-column-as-hyperlink
Set: $col[“linkoptions”] = “target=’_blank'”;
Your Answer