Hi All , i am aware that KendoGrid provides columns aggregates in the footer template , my requirement is to populate a editable column aggregate/sum into a separate div element present in form . currently i am looping through all the records in the grid where dirty-lag= true and editable column val >0 . Is there is any other way to address this more efficiently like how JQGrid provides .
Example of JqGrid - i can get the sum of a column without looping through all the records .
var sum = $(<GRID_NAME>).jqGrid('getCol','<COLUMN_NAME>',false,'sum');
I'm trying to configure this grid so that all the columns auto-expand enough to show all the data in every column.
Regardless of what I've tried, it seems that the table stays the same width with no scrolling, and calling autoFitColumn just *shrinks* that column to better accommodate the others (vs the way Format > Column > AutoFit Selection works in Excel.)
http://dojo.telerik.com/iRIqU
Can someone advise how to get the columns to auto-expand?
In kendo spreadsheet, if you
1. select 2 un-adjacent cells,
2. ctrl-x to cut, and selected cell contents are cleared
(in the console, error "Unsupported for multiple ranges" is thrown)
3. but when you paste with ctrl + v, the content is lost.
If you do the same thing for copy (ctrl + c), an dialog pop-up with message "That action cannot be performed on multiple selection". I think this should also happen for cut operation.
Hi there,
I was wondering if it was possible to sort the grid view data with the treeview.
I would want to load my data of say.... cars and display it in the treeview, but also sort everything in the treeview ex, by owner, by brand, etc.
If this is possible, how would i go about handling the data loading. Do I need to make a new structure for the data or can I simply use a different datasource?
Thanks.
Hi.
I use Metro theme.
When hovering a combo box, an unnecessary green underline appears by location.
It is the first combo box of the following sample.
http://dojo.telerik.com/IkaMUs
(I confirmed it with chrome.)
Is there a way to fix this problem?
According to the Kendo UI template documentation, you can use either the #=Field# or #:Field# notation, with the #:Field# notation encoding the text. However, I cannot seem to get this to work.
I created a field in my model that just returned a string, "<b>Todd</b>". Then, I used the template like this:
<a href="/page.aspx?path=#=Field#"></a>
and also like this:
<a href="/page.aspx?path=#:Field#"></a>
In BOTH cases, the output was
<a href="/page.aspx?path=<b>Todd</b>"></a>
While I would expect that for the #=Field# notation, for the #:Field# notation, I was expecting:
<a href="/page.aspx?path=%3Cb%3ETodd%3C/b%3E"></a>
Any ideas on why this isn't working like I am expecting?