Adding New Items
You can enable users to add a new item when the search results do not match their filtering conditions.
For a runnable example, refer to the demo on adding new items to the DropDownList.
-
Initialize the DropDownList.
<input id="products" style="width: 100%;" /> <script> $(document).ready(function() { var data = [ { ProductName: "Beer", ProductID: "1" }, { ProductName: "Tee", ProductID: "2" }, { ProductName: "Coffee", ProductID: "3" } ]; $("#products").kendoDropDownList({ filter: "startswith", dataTextField: "ProductName", dataValueField: "ProductID", dataSource: data }); }); </script>
-
Refer the data source of the DropDownList.
var widget = $("#products").getKendoDropDownList(); var dataSource = widget.dataSource;
-
Implement the confirmation dialog.
if (confirm("Are you sure?")) { dataSource.add({ ProductID: 0, ProductName: value });
-
Sync the data to update the records.
dataSource.one("sync", function() { widget.select(dataSource.view().length - 1); }); dataSource.sync();