is it possible to have the edit, delete action links on the left side instead of on the right.
Also, is it possible to have the edit link open the edit dialog instead on the inline editing.
Thank you.
1 Answers
Make first column as PK and make $col["hidden"] = true;
To make action links on left, define it as 2nd column.
# Customization of Action column width and other properties
$col = array();
$col["title"] = "Action";
$col["name"] = "act";
$col["width"] = "50";
$cols[] = $col;
For action columns to invoke dialog, It may need some level of modification and not ready now.
Your Answer