Good day,
The spreadsheet control doesn't seem to support nested VLOOKUPS eg
=IFERROR(IFERROR(VLOOKUP(alt_ref&"/"&supplierID&"/"&LEFT(courseCode,4)&"*",Calcs!A:G,6,FALSE),VLOOKUP(alt_ref&"/"&supplierID&"/",Calcs!A:G,6,FALSE)),VLOOKUP(alt_ref&"//",Calcs!A:G,6,FALSE))
This works correctly in Excel.
Regards
Derek
I have an ajax connected grid, and I have a button thats a submit button, when I click it it posts the page and the searchstring I have in a textbox.
This is fine and works, I was just wondering if and how I can with jquery get the button to get ajax to fetch the data for the grid? I would like that to happen without a postback if possible, and it should since its an ajax grid.
any ideas ?
Regards,
Emil

I am binding a ListView to a collection of strings. How can I access that data in the template definition? Model.SearchResults is a type of IEnumberable<string>
@(Html.Kendo().ListView(Model.SearchResults) .Name("listClients") .TagName("div") .ClientTemplateId("clientsTemplate") .Pageable(pageable => pageable .PreviousNext(true) .Info(true) .PageSizes(true)) .HtmlAttributes(new{style="min-height:300px"}) .DataSource(dataSource => dataSource .PageSize(1)))<script type="text/x-kendo-tmpl" id="clientsTemplate"> @Html.Action("LoadProfileView", new { clientId = **HOW DO I GET THE VALUE HERE**})</script>Hi How to draw a fever chart in Kendo bubble chart in ASP.Net MVC . PFA. I would like to draw a background for the buble chart
I got a code for scatter but it is not working for Buble
http://docs.telerik.com/kendo-ui/controls/charts/how-to/draw-on-scatter-plots
I want to be able to use Defined Name when creating my spreadsheet so that I can use them in formulas. IE instead of having to create a formula that is
= SUM(A1:A20) I define A1 to A20 a name "Period1" and then I can do things like = SUM(Period1 Apples) etc. How do you create the Defined Names in the Spreadsheet and does the formulas then support this feature. Also when exporting the spreadsheet to excel do the formulas and names export?
Thanks
Lee
Hi, i found an example of a Multiselect with checkbox on item templatem unfortunately only with UI syntax and tried to use that in
MultiSelectFor in MVC but struggle with the item template. Can somebody help me please ?
Knowlege Article from UI
http://www.kendoui.io/kendo-ui/web/multiselect/how-to/checkbox-item-template#create-checkbox-custom-item-template
Here is my code for the editor template
@(
Html.Kendo().MultiSelectFor(m => m)
.DataTextField("Value")
.DataValueField("Key")
.ItemTemplate("<input type='checkbox'/> #:data.text#")
.TagMode(TagMode.Single)
.BindTo((System.Collections.IEnumerable)ViewData["FsrList"])
)