How do you inject additional data to a drop down that uses remote data?
I would like to end up with a ProductID=0 and ProductName="Select Choice" as the first option.
https://dojo.telerik.com/ebitOseJ
$(document).ready(function() { $("#products").kendoDropDownList({ dataTextField: "ProductName", dataValueField: "ProductID", dataSource: { transport: { read: { dataType: "jsonp", url: "https://demos.telerik.com/kendo-ui/service/Products", } } } }); });