I have a mvc grid with as model { int projectnumber, int Monday }
and code
columns.Bound(c => c.Monday).Title(text: "Monday").ClientFooterTemplate(template: "#=sum#");
.DataSource(datasource => datasource
.Ajax()
.Aggregates(aggregates =>
{
aggregates.Add(a => a.Monday).Sum();
})
Now I only want to create the sum over all lines in the grid with exception of the line with project number 1.
The AJAX read gets back [1,1] and [2,4] and [3,5] So I hope to get a sum of 4+5=9 instead of the 10 I get with a normal sum.
I hope myu question is clear and somebody knows how to do a partial sum.
With kind regards,
Maurice Lucas

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