\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);
?>

pdf

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);
?>
In this article
Not finding the help you need?