By default export to CSV is disabled when navigator is enabled. The difference in using export to CSV in the
jqGridRender class, as opposed to export to CSV in the
jqGridClass, is that the names in header and initially hidden columns are taken from column model generated in the jqGridRender class. In that respect, you have more control on the export and how the CSV is formatted upon exporting.
To enable the export to CSV in navigator you should set the csv property to true.
$grid->setNavOptions('navigator', array("csv"=>true));
Additionaly you can overwrite the export file name to csv using the csvfile variable:
$grid->csvfile ='mycsvfile.csv';
You can use the csvsep variable to define the separator for the exported data
$grid->csvsep =",";