\Kendo\UI\MultiColumnComboBoxSuffixOptions

A PHP class representing the suffixOptions setting of MultiColumnComboBox.

Methods

icon

Defines the name for an existing icon in a Kendo UI theme or SVG content

Returns

\Kendo\UI\MultiColumnComboBoxSuffixOptions

Parameters

$value string

Example

<?php
$suffixOptions = new \Kendo\UI\MultiColumnComboBoxSuffixOptions();
$suffixOptions->icon('value');
?>

separator

If set to false, the suffix adornment will not have a separator.

Returns

\Kendo\UI\MultiColumnComboBoxSuffixOptions

Parameters

$value boolean

Example

<?php
$suffixOptions = new \Kendo\UI\MultiColumnComboBoxSuffixOptions();
$suffixOptions->separator(true);
?>

template

The template for the suffix adornment of the component.

Returns

\Kendo\UI\MultiColumnComboBoxSuffixOptions

Parameters

$value string|\Kendo\JavaScriptFunction

Example - using string

<?php
$suffixOptions = new \Kendo\UI\MultiColumnComboBoxSuffixOptions();
$suffixOptions->template('value');
?>

Example - using \Kendo\JavaScriptFunction

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