\Kendo\UI\MultiColumnComboBoxColumn
A PHP class representing the column setting of MultiColumnComboBoxColumns.
Methods
field
Defines the field for the column.
Returns
\Kendo\UI\MultiColumnComboBoxColumn
Parameters
$value string
Example
<?php
$column = new \Kendo\UI\MultiColumnComboBoxColumn();
$column->field('value');
?>
headerTemplate
Renders a template for the column header.
Returns
\Kendo\UI\MultiColumnComboBoxColumn
Parameters
$value string|\Kendo\JavaScriptFunction
Example - using string
<?php
$column = new \Kendo\UI\MultiColumnComboBoxColumn();
$column->headerTemplate('value');
?>
Example - using \Kendo\JavaScriptFunction
<?php
$column = new \Kendo\UI\MultiColumnComboBoxColumn();
$column->headerTemplate(new \Kendo\JavaScriptFunction('function() { }'));
?>
template
Renders a template for the column.
Returns
\Kendo\UI\MultiColumnComboBoxColumn
Parameters
$value string|\Kendo\JavaScriptFunction
Example - using string
<?php
$column = new \Kendo\UI\MultiColumnComboBoxColumn();
$column->template('value');
?>
Example - using \Kendo\JavaScriptFunction
<?php
$column = new \Kendo\UI\MultiColumnComboBoxColumn();
$column->template(new \Kendo\JavaScriptFunction('function() { }'));
?>
title
Defines the text of the column title in the header.
Returns
\Kendo\UI\MultiColumnComboBoxColumn
Parameters
$value string
Example
<?php
$column = new \Kendo\UI\MultiColumnComboBoxColumn();
$column->title('value');
?>
width
The width of the column. Numeric values are treated as pixels.
Returns
\Kendo\UI\MultiColumnComboBoxColumn
Parameters
$value string|float
Example - using string
<?php
$column = new \Kendo\UI\MultiColumnComboBoxColumn();
$column->width('value');
?>
Example - using float
<?php
$column = new \Kendo\UI\MultiColumnComboBoxColumn();
$column->width(1);
?>