or
<% Using Html.BeginForm()%> <div id="legent"> </div> <div id="numbers" disabled="disabled" > </div> <input type="submit" value="choose" name="r1"/> <%end using %> <script> $(document).ready(function () { $("#legent").kendoDropDownList({ optionLabel: "Legent...", dataTextField: "Name", dataValueField: "Id", dataSource: { transport: { read: { type: "GET", contentType: "application/json; charset=utf-8", url: "http://jason.platform4telecom.com/JsonProfiling/enableme/test%5Eoneoverview%5Ecom/abc/xyz", jsonpCallbackString: "mycallback", dataType: "jsonp" } }, } }); var numbers = $("#numbers").kendoDropDownList({ autoBind: false, cascadeFrom: "legent", optionLabel: "Select product...", dataTextField: "Identifier", dataValueField: "Custnr", dataSource: { transport: { read: { type: "GET", contentType: "application/json; charset=utf-8", url: "http://jason.platform4telecom.com/JsonProfiling/FindNumbers/test%5Eoneoverview%5Ecom/abc/xyz", jsonpCallbackString: "mycallback", dataType: "jsonp" } } } }).data("kendoDropDownList"); }); </script> I follow exactly the sample on the site; nevertheless it is not working. I have following questions:- where is the filtering taking place?
<script src="/Content/kendo_scripts/console.js"></script> <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script> <script type="text/javascript" src="http://cdn.kendostatic.com/2012.1.322/js/kendo.all.min.js"></script> <link href="http://cdn.kendostatic.com/2012.1.322/styles/kendo.common.min.css" rel="stylesheet" /> <link href="http://cdn.kendostatic.com/2012.1.322/styles/kendo.default.min.css" rel="stylesheet" /> <link href="http://cdn.kendostatic.com/2012.1.322/styles/kendo.mobile.all.min.css" rel="stylesheet" />

Error: Invalid template:'<tr data-uid="#=uid#"><td >${locationName}</td><td >${answered}</td><td>${unanswered}</td><td >${total}</td></tr>' Generated code:'var o,e=kendo.htmlEncode;with(data){o='<trdata-uid="'+(uid)+'"><td >'+(e(locationName))+'</td><td >'+(e(answered))+'</td><td >'+(e(unanswered))+'</td><td >'+(e(total))+'</td></tr>';}return o;'<script id="feeds-template" type="text/x-kendo-tmpl"><tr><td>${ locationName }</td><td>${ answered }</td><td>${ unanswered }</td><td>${ total }</td></tr></script><script id="feeds-template" type="text/x-kendo-tmpl"><tr><td>1</td><td>2</td><td>3</td><td>4</td></tr></script>Error: Invalid template:'<tr><td>1</td><td>2</td><td>3</td><td>4</td></tr>' Generated code:'var o,e=kendo.htmlEncode;with(data){o='<tr><td>1</td><td>2</td><td>3</td><td>4</td></tr>';}return o;'