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
<input id="multicolumncombobox" />
<script>
$("#multicolumncombobox").kendoMultiColumnComboBox({
inputMode: "numeric",
dataTextField: "text",
dataValueField: "value",
dataSource: [
{ text: "Item 1", value: "1" },
{ text: "Item 2", value: "2" }
],
columns: [
{ field: "text", title: "Text" },
{ field: "value", title: "Value" }
]
});
</script>
In this article