$('#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> $("#otherEthnicityChart").kendoChart({ theme: "metro", dataSource: { data: indicator14reportData, filter: [ { field: "DataClass", operator: "eq", value: "OtherChart" }, { field: "Agency", operator: ">", value: "E" }, ], }, title: { text: "Other" }, legend: { position: "bottom" }, seriesDefaults: { type: "column", stack: true }, series: [ { field: "HigherEducationPercent", name: "Higher Education", color: "#5084EA" }, { field: "CompetitivelyEmployedPercent", name: "Competitively Employed", color: "red" }, { field: "OtherEducationPercent", name: "Other Education", color: "green" }, { field: "OtherEmploymentPercent", name: "Other Employment", color: "purple" }, { field: "NotEngagedPercent", name: "Not Engaged", color: "#F2F471" }], tooltip: { visible: true }, categoryAxis: { field: "Agency" }, valueAxis: { max: 100, min: 0, labels: { format: "{0}%", max: 100 } } });