1) Reset the scroll position of kendo ui mobile dropdownlist to top ,instead of displaying the list starting from the last selected item. 2) Put an indicator within a kendo ui mobile dropdownlist ,allowing the user to know that he/she has to scroll down to view the items below
please make kendoui more simple and more open.
The grid has support the auto column width, in case using the frozen column the grid doesn't display any column, so i think it really need to support auto column width with frozen columns.
The slider control should support adding multiple handles. This could enable the use case of the user defining a range with a single slider control (define the minimum and maximum value for example). Here's an example: http://refreshless.com/nouislider/
If there is a way that we can lock the top row of our grid and still use the browser scroll instead of their grid scroll? Right now we lose that top header row and it’s making everyone crazy.
Currently there is no way to tell when a new connection is created between two shapes. The add event is called when the connection line first appears on the screen, but there is no event to capture when the connection is made to another shape. This would be extremely helpful when users are creating flow charts and assigning prerequisites by drawing connections.
While re-sizing the column of the Grid Chart, the columns of the grids looks a bit distorted, a bit of merged to each other partially. When we scroll the page a bit, the issue get resolved. So, for me, it looks like the state of the Grid was frozen for some time and scrolling the page reset the same. Note: This issue is seen in Chrome (Web Version) Only. I have tested the same in Firefox and IE and it works absolutely fine. Any help?
Drag and Drom not Work on EI. Please Fix it For Example this component work http://html5demos.com/dnd-upload
We have a use case where we are using ContextMenu with the following configuration: showOn 'click' alignToAnchor true, Anchor being a button and on click of the button, context menu opens but the focus doesn't shift to it and remains still with the button.
make a widget like the asp.net Details View control. This displays the details of a single row from a grid in 2 columns. The Left Hand column has the field labels, the RH column has the values.
Automatically add page breaks to PDF export, currently if exporting contents with very long contents it exports as one single long page, the page break should happen based on the Page size for example "A4"
It's great having the tsd files as part of the full download. It would even be better if you could submit a pull request to the DefinitelyTyped github repo https://github.com/borisyankov/DefinitelyTyped , as that would allow us to integrate Kendo UI documentation in JavaScript projects out of the box. This repo is used by the npm tool "tsd", which allows for really easy automation of the downloading and updating of tsd files. This would be akin to the bower dependency that you already submitted for kendo.core. more info here: http://definitelytyped.org/ Thanks, Jaume
It would be beneficial to add additional support for tooltips natively on the Bubble Layer in RadMap
On RadMap and other visual tools, it would be beneficial to have the ability to alter colors for specific data points or have each data point have the ability to define a color. This would be similar to how series in RadCharts work in that I could define a color for a specific marker, or layer, etc.
We recently implemented a bubble chart for our system. The users loved it but wanted to see custom markers that would indicate "direction" of the data value. We couldn't see a way to put custom markers on the bubble chart (hence the term bubble I guess) so we looked at the scatter chart. This did everything we needed (custom marker, relative sizes, etc) but did not allow us to click on a marker that was behind another (like the bubble chart). We would like one or the other.
I have a very simple chart, with date category axis, 2 series with just 2 values (two days). I set rotation for labels on a category axis to 45. When any "label" in a legend is clicked, the labels disappear. This problem appears only if rotation is set to 45. I have tried to set rotation to 40 or 90 - both are just fine. But rotation 45 seems to be broken.
After I filtered a column and deletes the filter content and press again the "Filter"-Button, nothing happens. Filter with empty string should clear the filter on the column,
There are times when it is not obvious that the Listview contains more records than are displayed. It would be nice to have an optional indicator that there are more records above or below the current scrolled view. Another option is to keep the scrollbar turned on.
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!
the only way to style only the mulitselect dropdown list differently than other dropdown lists is to run a js script to add a css class... function setupMultiSelectULStyle (styleName) { var selects = $("select"); $.each(selects, function(index, item) { var data = $(item).data("kendoMultiSelect"); if (data !== undefined && data !== null) setupMultiSelectULStyleSingle(data, styleName); }); } i think if you are creating elements that are not wrapped in parent element style they should have some way to style by parent control type differentiated css selector <div class="k-list-multiselect k-list-container k-popup ... " id="..." > <div class="k-list-dropdown k-list-container k-popup ... " id="..." >