Please add support for named stacks in Area and Line charts. It should work similar to Bar/Column charts. For example, with the following series definition [{field: 'Whole', stack:'whole', name: 'Whole Part'}, {field:'Part1', stack:'parts', name:'Part 1'}, {field:'Part2', stack:'parts', name:'Part 2'}] Part1 and Part2 should stack but not "Whole".
Kendo Map - Auto-Center after loading the geojson file.
List view should have a Option for the checkbox to select the list with custom template for the checkbox with custom template for the checkbox which can behave as the toggle button for mobile and can be disabled if not required. Cause the existing system to select and deselect item is very non user friendly
It makes sense that grouped grids should be sorted by the group name for proper paging, however, it would be nice to be able to sort by group name THEN BY another field. Wouldn't mess up paging.
Kendo has places where you can specify cssSpriteClass, and other places where you can specify the actual icon by name. My proposal is to provide a way to say I am using halflings or font awesome or anything else for that matter, and just specify icon "fa fa-play" and its done. Currently its way too much work to implement kicon wrappers for font awesome fonts, and then they dont work everywhere anyway.
The grid and chart can be used in mobile apps and seem to work properly. (See http://kendoui-feedback.telerik.com/forums/127393-telerik-kendo-ui-feedback/suggestions/4522456-touch-grid-for-tablets-that-has-as-many-features-a for the suggestion that they do work). However, they don't adapt to the mobile appearance like the dedicated mobile widgets, which makes them hard to use in cross-platform mobile applications.
Topojson is a much more compact data format for spatial data. Supporting it would allow more complex spatial data to be loaded without slowing down the browser experience.
Support for injecting some custom header information in the export PDF and Excel? e.g. You are exporting some grid to excel or pdf and you want do display the search parameters in the header of the document.
I was wondering if there's a way to validate a form that has inputs with identical names. The following JS Fiddle is an example of identical names: http://jsfiddle.net/fmpeyton/5c9d2p0c/ I would hope there would be a way to handle this, since lots of backend languages have the ability to accept identical name attributes, as they concatenate the values or convert them into an array or collection (ASP.NET).
RTL support for the kendoui gantt widget
I love your controls except Validator. I have finally made my own, where I can write multiple functions to evaluate each input just like this in typeScript: new Helpers.Validate([ { name: 'postId', test: [(e) => { if (e == "") return "Chose a post."; }] }, { name: 'creditor, test: [(e) => { if (e == "") return "Chose a creditor"; }, ] }, { name: 'description', test: [ (e) => { if (e == "") return "Make a description"; }, (e) => { if (e.length < 15) return "Your description are to short "; }, ] }, ]); It is now a pleasure to make forms and perhaps you will consider to reevaluate the structure of your Validator that I have been struggling with workarounds on for so many hours the last two years. Kind regards from Kenneth
When exporting data to pdf using the Kendo pdf toolbar please can all data be exported instead of only the data contained within the html viewable page (eg. when height is set using kendoGrid.height).
Base units for chart include Months, Day, Year etc but there is no support for Quarter. This causes gaps on the chart when displaying quarterly data.
I think the treeview is not as good as possible. It can not refresh one of the node alone.
I am facing a problem in the Kendo grid, I want to apply default filter criteria on the data source. To achieve this functionality, I am filling the filtered data on the first initialization of the data source and then adding the filter criteria on the JavaScript side by using the code. masterFilters.filters.push(eventTypeFilters); masterFilters.filters.push(roleTypeFilters); dateviewGrid.dataSource.filter(masterFilters); But due to this, Http request of the AJAX call is being repeated on the code statement dateviewGrid.dataSource.filter(masterFilters); To resolve this problem, I have tried following options, 1) I have returned the zero records at the time of initialization of the data source, but it is giving another hit on the virtualization method. 2) But when I am returning at least one row at the time of initialization of the data source, It is not throwing extra hit on the virtualization method. It is showing strange behaviour. Is there any bug in the Kendo grid?. Please suggest a right approach to achieve this functionality, If you want some more clarification on this problem, let me know.
I really like the new TreeList component of the recent release, however it would be great if you can add the ability to drag and drop a record and move it around the hierarchy.
In Chrome, you can type into the Editor's fontName tool to select a font. In IE, however, you can't type in a font, but rather can only select one using the dropdown. It would be good to be able to give the user a consistent experience across browsers. Ideally that would mean allowing them to type in a font in IE, but if that is not possible it would be good to be able to configure/turn off the ability to type in the control in Chrome and other browsers.
Inserting a new table in the editor in IE ignores the current cursor position and adds the table as the first element. If you add a new table, this will be added in the first cell of the first table.