2 Answers
I have a situation where i need to change export logo and remove add, delete,column, and edit option.
please let me know can it done and howz the process its simple minor change or complex one .
Thanks,
Mohan
Hi Mohan,
For shrinktofit, Please review documentation for more help. http://www.phpgrid.org/docs/
$grid["shrinkToFit"] = true;
What do you mean by export logo? send some screenshot.
For read only more … set
$g->set_actions(array(
"add"=>false, // allow/disallow add
"edit"=>false, // allow/disallow edit
"delete"=>false, // allow/disallow delete
"rowactions"=>false, // show/hide row wise edit/del/save option
"autofilter" => true, // show/hide autofilter for search
)
);
Your Answer