\Kendo\UI\GridColumnExportable
A PHP class representing the exportable setting of GridColumn.
Methods
excel
If set to false the column will be excluded from the exported Excel file.
Returns
\Kendo\UI\GridColumnExportable
Parameters
$value boolean
Example
<?php
$exportable = new \Kendo\UI\GridColumnExportable();
$exportable->excel(true);
?>
If set to false the column will be excluded from the exported PDF file.
Returns
\Kendo\UI\GridColumnExportable
Parameters
$value boolean
Example
<?php
$exportable = new \Kendo\UI\GridColumnExportable();
$exportable->pdf(true);
?>