Suggested fix if (a != null && b !== null) { return a > b ? 1 : (a < b ? -1 : 0); } if (a == null && b == null) { return 0; } if (b == null) { return 1; } return -1;
KendoUI Mobile currently has only back button. There should also be a forward button along with it.
Take a look at DevExpress DXperience...
you can able to change background image in kendo ui slider.
Enable the user to show the icon in a different place than the default. like the right of the text and not juts to its left.
Today, the only way to change the date in kendoDatePicker is to show the calendar and select another date, but in scenarios where i want to allow my user to move one day at a time as defaule, a left arrow and rigt arrow will be great. same thing holds for the kendoNumericTextBox, althogh he has the up/dowun arrows, they are relitevly small and a Plus and Minus icons to the right and left of the widget will be easier for a fingure to tuch.
Please add a click event to the Chart Legend similar to the seriesClick event that currently exists.
Allow charts to define multiple chart areas. This would be particularly useful in scenarios where historical data for an industrial process must be visualized in line charts (e.g. temperatures, pressures, valve positions, flow rates etc.)
It would be awesome if you added masking to input fields, similar to what you've done with validation. Many times I need to add formatting to the display of a field that and I don't want to store the extra characters associated with the on screen formatting. Formatting for telephone numbers, email addresses, currency are the ones immediately useful. Although other libraries exist for these, it would be nice to consolidate them into a single library!
Currently complex elements (Like the Grid and the Chart) have so many properties and methods that the page has so many DOM elements it takes forever to load.
Add support for the HTML 5 data-* so we can access the Kendo API in this elegant and unobtrusive way. Example, Kendo's date picker could be called this way something like this: <input type="text" class="myClass" data-kendo-date="true" data-format="dd/MM/yyy" data-min-date="13/12/2013" />
Currently, if a page's font size is just a little bit larger (for example 14px), some widgets do not display correctly. Sometimes the images alignment is wrong, sometimes borders do not fit. As an example, look at... http://www.kendoui.com/forums/ui/general-discussions/widget-display-with-changed-font-size.aspx With frameworks like Bootstrap it is quite common that the font size is not too small. So currently it means work to use Kendo and Bootstrap together, I suggest you either improve the widgets' rendering so they do not rely on a certain font size. Or another solution would be if each customer could create a specific CSS from the LESS by setting some variables.
It would be great to have a Widget that allows you to bind keyboard short cuts to a normal HTML element such as a Button or really an other element. Additionally upon init, this widget would check for conflicts against other shortcuts provided by Kendo UI and provide the developer an exception explaining the conflict.
the baseUnit options ist great but i need seconds as baseUnit
when adding an additional tab to a tabstrip - the tabbing behavior does not work as it should when switching tabs use the html below: then select in the browser the dynamic tab - works ok then select in the browser the static tab - this results in both tabs being displayed HTML to reproduce: <!DOCTYPE html> <html> <head> <title></title> <link href="styles/kendo.common.min.css" rel="stylesheet" /> <link href="styles/kendo.default.min.css" rel="stylesheet" /> <script src="js/jquery.min.js"></script> <script src="js/kendo.all.min.js"></script> <script> $(document).ready(function() { $("#tabstrip").kendoTabStrip({ animation: { open: { effects: "fadeIn" } } }); var tabstrip = $("#tabstrip").kendoTabStrip().data("kendoTabStrip"); tabstrip.append({ text: 'Dynamic Tab', content: 'Dynamic Content' }); //var firsttab = tabstrip.select(); //tabstrip.select(firsttab.next()); //tabstrip.select(firsttab); }); </script> </head> <body> <div id="forecast"> <div id="tabstrip"> <ul> <li class="k-state-active"> Static Tab </li> </ul> <div> Static content </div> </div> </div> </body> </html>
You refer to Kendo UI Premium Forums in your FAQ and web site, but post no link to this so I cannot find it! I am a paid up customer and want proper support like other Telerik products.;
Replace de default browser scrolle bar in container widgets like splitter or panel bar
Right now, the scrollbars of the scrollwrapper widget only show up if the user actually starts scrolling. However, there are circumstances where the user might not be aware that the content is actually scrollable. Two examples: The content of the scrollwrapper contains a lot of whitespace/background such that the user sees whitespace at the end of the scrollwrapper box and is not aware of overflowing content. The scrollwrapper does not contain continuous text but a list and the visible content ends right after a list item -- the user might not be aware that there are subsequent list items hidden in the overflow. Thus I suggest to add a configuration option to the scrollwrapper widget which makes both/the horizontal/the vertical scrollbar permanently visible to inform the user about overflowing content.