\Kendo\UI\GanttColumnFilterable
A PHP class representing the filterable setting of GanttColumn.
Methods
ui
The role data attribute of the widget that is used in the filter menu, or a JavaScript function which initializes that widget.
Returns
\Kendo\UI\GanttColumnFilterable
Parameters
$value string|\Kendo\JavaScriptFunction
Example - using string
<?php
$filterable = new \Kendo\UI\GanttColumnFilterable();
$filterable->ui('value');
?>
Example - using \Kendo\JavaScriptFunction
<?php
$filterable = new \Kendo\UI\GanttColumnFilterable();
$filterable->ui(new \Kendo\JavaScriptFunction('function() { }'));
?>