\Kendo\UI\GridAllowCopy
A PHP class representing the allowCopy setting of Grid.
Methods
delimeter
Changes the delimeter between the items on the same row. Use this option if you want to change the default TSV format to CSV - set the delimeter to comma ','.
Returns
\Kendo\UI\GridAllowCopy
Parameters
$value string|
Example - using string
<?php
$allowCopy = new \Kendo\UI\GridAllowCopy();
$allowCopy->delimeter('value');
?>