\Kendo\UI\MultiColumnComboBoxVirtual

A PHP class representing the virtual setting of MultiColumnComboBox.

Methods

itemHeight

Specifies the height of the virtual item. All items in the virtualized list must have the same height. If the developer does not specify one, the framework will automatically set itemHeight based on the current theme and font size.

Returns

\Kendo\UI\MultiColumnComboBoxVirtual

Parameters

$value float

Example

<?php
$virtual = new \Kendo\UI\MultiColumnComboBoxVirtual();
$virtual->itemHeight(1);
?>

mapValueTo

The changes introduced with the Kendo UI R3 2016 release enable you to determine if the valueMapper must resolve a value to an index or a value to a dataItem. This is configured through the mapValueTo option that accepts two possible values - "index" or "dataItem". By default, the mapValueTo is set to "index", which does not affect the current behavior of the virtualization process.For more information, refer to the article on virtualization.

Returns

\Kendo\UI\MultiColumnComboBoxVirtual

Parameters

$value string

Example

<?php
$virtual = new \Kendo\UI\MultiColumnComboBoxVirtual();
$virtual->mapValueTo('value');
?>

valueMapper

The widget calls the valueMapper function when the widget receives a value, that is not fetched from the remote server yet. The widget will pass the selected value(s) in the valueMapper function. In turn, the valueMapper implementation should return the respective data item(s) index/indices.

Returns

\Kendo\UI\MultiColumnComboBoxVirtual

Parameters

$value \Kendo\JavaScriptFunction

Example

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