Currently the calling .hide() on a Kendo UI Notification hides all of the instances of that notification. It would be useful to have support for hiding a specific instance, perhaps by 'ID'. I've accomplished this by using the .getNotifications() method and iterating over the notifications to find the one I wish to close, however built in support would be a timesaver!
Expand Chrome Inspector to allow easy creation of DOJO. In the Inspector, we can see all the options as well as the data for the widget. The created DOJO should be simple (at least to start), meaning local data and all the options. At the very least, the Chrome Inspector should allow copying of the options and the data so pasting into a DOJO is as simple as possible.
Right now on a mobile device it will put just what it needs into the overflow box. I would like to see the ability to force everything into the overflow when it is activated at all.
It would be great if there was a kendoUI atmosphere package library for Meteor js
Hi
It would probably be trivial to make the columnReorder much more useful
(1) Allow a preventDefault feature, to conditionally prevent some columns being moved. For extra points you could do this via a new columnReorderStart event so that the user can't drag the columns at all
(2) Don't allow locked columns to be moved out of the locked section
Thanks
Other vendors offer visual representations and better access to what controls are available and how to quickly use them in different scenarios. I cannot find any visual such as http://www.oracle.com/webfolder/technetwork/jet/jetCookbook.html?component=home&demo=all which nicely highlights what each control looks like from an index perspective. Furthermore, the code in a cookbook should be copy and paste and not have dependencies on hidden helper classes.
Currently it is possible to draw straight lines on the Kendo UI map. However, it would be interesting to display routes on the map. Ideally, Kendo should be able to draw routes between specified markers.
It is actually a problem that we have on our corporative product. We are using a Kendo.Map but the user has the ability of swapping between our corporative version of OSM, the public OSM, Bing and Aerial map. This means that I have to create a map with five layers at the beginning and set different opacities downloading all the time the tiles for the 5 layers or I have to destroy the map and shift layers like you asked me to do in this post http://www.telerik.com/forums/add-layer-dynamically-to-map Could be possible to include a new feature on the maps that allow the developer to change dynamically the layer type, the url template and the subdomains. without having to destroy the map, set it empty and create it again. Thanks a lot.
The new chart select feature is great but it only works with vertically oriented charts (column), but I need it for stacked bar charts. I'd also like to be able to disable the grab handles and programatically specify the range. I have multiple similar charts, a category-specific grid with additional info, and a dropdownlist for selecting the category. You can also select the category by clicking any of the chart elements.
Add support for cell.formula on Woorbook
Notifications stack should be able to slide after previous notification hides, like in toastr: http://codeseven.github.io/toastr/demo.html choose Bottom Right position and add some notifications. After last hides rest slides down. Same behaviour should be possible in KendoUI Notification
Would be nice to have a validator that validates not HTML elements, but model properties (after all when using MVVM HTML is bound to properties). Consider the following scenarios: A property is not directly bound to an HTML input. For example, I have a collection propery and my model is valid only if it contains at least N elements. Or if collection elements have date or time fields, overlaps are not allowed, and so on.
I'm writing a application and would love to have 'pull to refresh' activated when the user swipes up instead of down. In addition, endless scrolling would work when swiping down instead of up. Basically the reverse of how the listview works right now. I see this request often and users end up implementing their own solution.
The option in the Kendo Spreadsheet to show the unmarked values when a filter is applied instead to reset it by pressing the Clear button
Polymer support has already been requested but I would like to see Kendo UI support for Polymer.Dart.
Kendo OOXML should allow to give Pattern Style and Pattern Color for cell.
It looks like this was rejected over a year ago, but now that this feature is appearing in other frameworks it would be nice to reconsider. Each tab having its own history is core to making things work like it would in a native app. It is just so sloppy when a user loses their state going between tabs. You are able to do this with the ionic tabtrip http://ionicframework.com/docs/api/directive/ionTab/ so i would hope kendo can too.
We have come across problems where on ann individual vie wit would be good to strip out all the CSS styling on a listview. To do this presently is very difficult to find what styles are applied and when we do remove them it causes problems else where. Ideally it would be nice just to have a attribute on the widget which tells the widget not to use the in built styling.
Validation errors for the bottom row of a kendo grid will be obscured behind the pager. This is a bit rubbish. Also discussed here: http://www.telerik.com/forums/hidden-validators-when-virtual-scrolling-createat-bottom http://www.telerik.com/forums/the-validation-message-in-the-last-row-of-each-page-is-not-displayed
Often we want a separate delay time for the opening of menus and closing. Please consider adding independent hover delays.
$("#menu").kendoMenu({
...
hoverDelay: 400
...
});
or
$("#menu").kendoMenu({
...
hoverDelay: {
open: 100
, close: 500
}
...
});