Hi i'm new to this gridign system I have integrated my application with this gird and its working fine .Except the fact that it not showing me the export buttons at the bottom of the grid. I have tired changing the array setting i.e from tru to false but still its not working . There is the piece of code which I have been trying to work with .
// for excel, sheet header
$grid["export"]["sheetname"] = "Report";
$grid["export"]["range"] = "filtered";
$g->set_options($grid);
$g->set_actions(array(
"add"=>false, // allow/disallow add
"edit"=>false, // allow/disallow edit
"delete"=>FALSE, // allow/disallow delete
"rowactions"=>true, // show/hide row wise edit/del/save option
"export"=>TRUE,
"export_excel"=>TRUE, // export excel button
"export_pdf"=>TRUE, // export pdf button
"export_csv"=>true, // export csv button
"autofilter" => true, // show/hide autofilter for search
"showhidecolumns" => false, // show/hide autofilter for search
"search" => "advance" // show single/multi field search condition (e.g. simple or advance)
)
);
Kindly help me with it as it is the only issu i'm facing wioht the phpgrid
Thank you