If the base css has something like the following: box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; This will break the layout of the kendo controls. Adding the following override will fix it: [class^="k-"], [class*="k-"] { box-sizing: content-box; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; } This catches all elements that have classes with "k-" at the start and overrides the box-sizing back to default. Consider adding this to the kendo css (either the wildcard version or to each k-* class).
Hi, Need color ranges for the Y-axis in the line chart. This will enable the users to identify within which range the values falls with.
Try looking at http://docs.kendoui.com/api/web/treeview There's both a method and an event named "select", picking the "select" event navigates to the "select" method instead. Consider prefixing the #select anchor, e.g. #method-select and #event-select to avoid conflict.
Allow actionsheet to be databound to a DataSource
The DataBound event is the last event that can be bound to at present (other than user interaction events) - this occurs before rendering. In the situation where a chart wrapper is in a hidden div to be displayed and the datasource to be re-read under certain circumstances, it would be useful to have a post render event to ensure the chart is fully drawn before displaying the div.
On this page: http://demos.kendoui.com/web/grid/column-menu.html See the "Shipxxx" column. IE can input contents and submit but the menu seems shake. Other modern browsers can NOT input contents but the menu Not shake. Please fix both! Thanks~
Allow parameters to be passed to Actionsheet callback functions. I have a need for a varying number of Actionsheet actions based on data-driven settings. I can dynamically populate the Actionsheet with jscript, but each action has to call a different callback function. What I'd rather do is have each action call the same callback function and just pass an ID of the selected option to that function. For example, I am using the ActionSheet to present the user with a list of places they can route the current record. I don't need a different function for each place they can route it - just the ID of their selection.
Ability to have a hidden menu that slides in or pops in much like the other apps and frameworks have.
Allow adding shadow or colour gradient for the line in line charts
Native mobile controls can show small clear icon which is shown only when something is typed in the input control (see address bar or search bar in iOS). Some sites (e.g. google.com) also implement this behavior. Please add this behavior to Kendo input controls. For example, it can be activated by data-clearable attribute or something like this.
When loading a remote view on a large project project, i would love to have the option to load the view css only when needed instead of loading each and every css in the main app page. Thanks, ilan,
Make auto complete also available in Eclipse. It would be very nice that we could use Kendo UI in the Eclipse IDE and have auto complete working just as easy as in VS201x. A lot of Java development is done in Eclipse. So did I with JAX-RS (Restful WS) and Kendo UI Web and mobile. But coding JS with Kendo UI in Eclipse is like coding with notepad.
In case there are a couple of opened modal windows(win1, win2, win3, win4) after destroying one that was closed(win5) – two next in chain(win3 and win4) becomes enabled, instead of only the last one(win4). I’ve analyzed the code of method kendoWindow.destroy and found following lines if (shouldHideOverlay) { that._overlay(false).remove(); } else if (modalWindows.length > 0) { windowObject(modalWindows.eq(modalWindows.length - 2), that.options.name)._overlay(true); } It seems that line modalWindows.length - 2 should be changed to modalWindows.length - 1 as modalWindows holds currenlty opened windows, and overlay should be turned on for the last one.
Currently templates are only supported when the DropDownList is in an open state. Ideally, the DropDownList should have the ability to display a template when in a closed (selected) state as well. A common use case is to display icons next to the dataTextField. However in it's current state, when an item is selected the icon is no longer able to be displayed.
This will allow developers to customize the speeds of the views for any particular need and also to make it look even more native between devices.
I suggest develop a wigdget for Calendare (like Google Calendar or this http://arshaw.com/fullcalendar/)