$('#gridEmailAddress').data('kendoGrid').dataSource.get(#=Id#).set('StatusTypes[0].Flag',true)$('#gridEmailAddress').data('kendoGrid').dataItem(this.parentElement.parentElement).StatusTypes[0].Flag=true;
$("#dropdownlist").kendoDropDownList([{ text: 'Zone 1', value: '0' }, { text: 'Zone 2', value: '10000' }, { text: 'Zone 3', value: '10001'}]);
***second statement******
var json = "{ text: 'Zone 1', value: '0' }, { text: 'Zone 2', value: '10000' }, { text: 'Zone 3', value: '10001' }"; $("#dropdownlist").kendoDropDownList([json]);
$(document).ready(function () {
// WCFJSON();
// $("#input").kendoAutoComplete(["Apples", "Oranges", "Grapes"]);
// return;
$("#input").kendoAutoComplete({
minLength: 10,
dataTextField: "Cusip",
dataSource: new kendo.data.DataSource({
transport: {
read: {
url: "Service.svc/GetUsers",
dataType: "jsonp"
}
}
}
),
change: function () {
//alert("test");
this.dataSource.read();
}
});
});
Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest ' Some save logic context.Response.Clear() context.Response.ContentType = "text/plain" context.Response.Write("{'result':'result value'}") End Sub
var localDataSource = kendo.data.DataSource;

the instruction at http://www.kendoui.com/get-kendo-ui.aspx includes this line:
<script src="jquery-1.6.2.min.js"></script> <script src="jquery.min.js"></script>