\Kendo\UI\ComboBoxSuffixOptions

A PHP class representing the suffixOptions setting of ComboBox.

Methods

icon

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

Returns

\Kendo\UI\ComboBoxSuffixOptions

Parameters

$value string

Example

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

separator

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

Returns

\Kendo\UI\ComboBoxSuffixOptions

Parameters

$value boolean

Example

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

template

The template for the suffix adornment of the component.

Returns

\Kendo\UI\ComboBoxSuffixOptions

Parameters

$value string|\Kendo\JavaScriptFunction

Example - using string

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

Example - using \Kendo\JavaScriptFunction

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