Kendo UI Combobox

Contoh penggunaan Kendo UI Combobox, dengan mewajibkan user memilih salah satu nilai yang valid dari Combobox.

[code language=”javascript”]
function comboBoxOnChange(e){
if (this.value() && this.selectedIndex == -1) { //or use this.dataItem to see if it has an object
this.text(”);
}
}

$(‘#Disposition1Email’).kendoComboBox({
dataTextField: "Text",
dataValueField: "Value",
autoBind: false,
dataSource: {
data: @Html.Raw(Model.GetAssigneeOptionsAsJson())
},
change : comboBoxOnChange,
filter: ‘contains’,
});
[/code]

Chandra Oemaryadi has written 244 articles

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>