inputModeString
(default: "text")
Specifies the inputmode
attribute of the inner <input />
element. It is used to specify the type of on-screen keyboard that should be displayed when the user focuses the input.
Example
<select id="multiselect" multiple="multiple">
<option value="1">Item 1</option>
<option value="2">Item 2</option>
<option value="3">Item 3</option>
</select>
<script>
$("#multiselect").kendoMultiSelect({
inputMode: "email"
});
</script>
In this article