\Kendo\UI\TreeListColumnFilterable

A PHP class representing the filterable setting of TreeListColumn.

Methods

cell

Specifies options for the filter header cell when filter mode is set to 'row'.Can be set to a JavaScript object which represents the filter cell configuration.

Returns

\Kendo\UI\TreeListColumnFilterable

Parameters

$value \Kendo\UI\TreeListColumnFilterableCell|array

Example - using \Kendo\UI\TreeListColumnFilterableCell

<?php
$filterable = new \Kendo\UI\TreeListColumnFilterable();
$cell = new \Kendo\UI\TreeListColumnFilterableCell();
$dataTextField = 'value';
$cell->dataTextField($dataTextField);
$filterable->cell($cell);
?>

Example - using array

<?php
$filterable = new \Kendo\UI\TreeListColumnFilterable();
$dataTextField = 'value';
$filterable->cell(array('dataTextField' => $dataTextField));
?>

operators

The property is identical to filterable.operators, but is used for a specific column.

Returns

\Kendo\UI\TreeListColumnFilterable

Parameters

$value ``

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\TreeListColumnFilterable

Parameters

$value string|\Kendo\JavaScriptFunction

Example - using string

<?php
$filterable = new \Kendo\UI\TreeListColumnFilterable();
$filterable->ui('value');
?>

Example - using \Kendo\JavaScriptFunction

<?php
$filterable = new \Kendo\UI\TreeListColumnFilterable();
$filterable->ui(new \Kendo\JavaScriptFunction('function() { }'));
?>
In this article
Not finding the help you need?