Dear Sir/Madam,
I set below action setting as below and only one table is linked to the table, don't know why there are some records have not edit/delete from action column?
How do I do the troubleshooting?
$g->set_actions(array(
"add"=>true,
"edit"=>true,
"delete"=>true,
"view"=>true,
"rowactions"=>true,
"export"=>true,
"autofilter" => true,
"search" => "simple",
"inlineadd" => true,
"showhidecolumns" => false
)
);
Best regards,
Kelvin.
The first column of grid must contain unique data, usually pk or concat fks. It is required to uniquely identify row for editing operations.
I faced the same problem. This post solved the problem. Is it somehow possible to hide that column with unique data? Thanks.