I just want DataViz. I'd be happy to pay for the professional license, but I don't want all of the widgets and have to install everything. And please, make this manageable through Bower.
Since KendoUI has now MaskedInput widget would be nice to have a grid configuration option, which allows to specify mask for a column in edit mode.
There is a bug that came out of nowhere. When the drop down list is selected, the position of the box with the options below that popups is not attached to the the drop down list above. I hope you understand what I mean. I can also post a screenshot. The only thing I do is to write an html select with some options and just stype it with $("#name").kendoDropDownList();
I know it's still in beta, but it would be nice
We are waiting for THE tool to help us make great animation, great binding, great web application like Silverlight to finally have application in HTML5 working on all platforms but having the tools many peoples are used to. Good luck !
It's March 5th. When is that Q1 release (or Beta) with the frozen / locked column feature going to be available?
DevExpress PhoneJS supports partial views that allow you to share and reuse similar HTML markup among multiple views. I need this feature right now in Kendo UI Mobile... I'm thinking about doing some kind of work around possibly with Templates or a jQuery Clone method call but it's going to be pretty hacky... Does Kendo UI Mobile have something similar to this already: DevExpress's PhoneJS Partial Views are described here under Flexible View Rendering Engine: http://phonejs.devexpress.com/ This is what I need: http://phonejs.devexpress.com/Documentation/Howto/Views_and_Layouts?version=13_2#Add_a_Partial_View Thank, Nathan
Some feature I like to see and really miss is the "band" chart type. See some good example here: http://www.visiblox.com/visibloxcharts/examples/chart-types/line-and-area/band-chart/
This bug is visible in your demo at http://demos.kendoui.com/web/grid/editing.html. in Grid / Batch editing when you enter a decimal value in column Units in Stock, then click "Save changes" page does not save the value and the page does not do any saving. perhaps there is a bug in NumericTextBox which exists in function caret(element, position) We get an unspecified error for this bug in our project
Kendo UI for mobile looks really promising. However, when I tried your demo app on Safari Mobile on iOS, it seems that in the index, when I tap on a menu item, the first tap is almost never catched. It usually takes two taps for a menu item to catch the click event and load the demo. I am on iOS (6.1.3) and on Safari. A few friends of mine also noticed this problem on Android phones. Are we the only ones to notice this behavior ?
There really needs to be some manner of an event raised when 'validateInput' and 'validate' run, that can provide meaningful feedback to hook into. As it stands right now, it is very hard to do any kind of manipulation with the Kendo Validator. But adding even such simple lines as .. input.attr("aria-invalid", true); // existing kendo code input.trigger('invalid', [messageText, messageLabel]); to the "validateInput" function would make it more possible to have the validator communicate with third party tools (in my situation, qTip2). Having an event raised when validation is complete would also be very useful because it would allow other UI elements to effectively respond to it, without having to do very hokey ad-hoc manipulations.
Your grid so successful but it must have filter row llike devexpress.
The drawer widget can be opened either via a button click or the user swiping anywhere. Our users consider this unexpected behavior, and often wonder what they are looking at after an accidental swipe.
Please support the HTML5 History API and stop using URL fragments for both general use and SPAs. URL were, and always will be, a hack (although necessary previously) and there is enough support for the History API now to move to it. Even Facebook is using it, so there can be much concern for support. :-)
As per forum thread: http://www.kendoui.com/forums/mobile/listview/endlessscroll-with-scroller.aspx The Listview should look for any parent scroller to determine endlessScroll rather then look at the View's scroller.
I use Durandal/Knockout and Breeze for my PhoneGap mobile App. Kendo Mobile is one of the best looking CSS libraries but cannot work with Durandal. This sums it up - http://stackoverflow.com/questions/17758991/where-to-init-kendo-mobile-application-in-durandal/17786286?noredirect=1#17786286
It would be great if Javascript Source Map files (details: http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/) were available for each of the minified Kendo UI files. These files allow a developer to publish their application using minified files, but have the browser (at least Chrome and Firefox) automatically load and link up with a non-minified version for debugging purposes. I'm not sure which minifier you use, but Closure supposedly can create them automatically. Thanks for considering this.
With TabStrip, it's only possible to programmatically switch to URLs instead of indexes of the tabs. In some cases you may not have an URL, but a click handler, and therefore it is impossible to switch to the tab it represents. http://docs.kendoui.com/api/mobile/tabstrip#methods-switchTo
As you know, apple announced the new direction the iOS will be taking. this will no doubtedly have a huge effect on the developer guidelines and therefore the app store submission process. If kendo mobile doesn't match the new look, the apps might get rejected.
I will try to explain the functionality I am looking for a little better. Suppose I have a tabstrip with 3 pages. Page A, B and C. Page C is an info page and doesn't have sub pages, but Page A and B have a button (or listview) to navigate to a sub page (view) of page A (A-sub) and B (B-sub). Desired behaviour (IMHO): Example 1: When I start the App, it will always show page A. I can click on the Icon for page B to navigate to page B and then click page C to navigate to page C. Now (when I am still on page C) I click the back-button, the app navigates back to page B and when I click the back-button again, I will then navigate from page B to page A. In my example (and in the apps I so far have been working on), I consider the tabs (pages) on the tablist as a menu and when I click the back button I don't want to go to a previous visited page, but I want to exit (with or without warning) the app. Example 2: Now I start again, still on page A of course. On page A I have a button that navigates me to a sub page (A-sub). I click the button and the sub-page shows. When I click the back button I want me app to navigate back to page A from sub-A. When I click the back button on page A again, I want to leave the app. Example 3: Start the App and page A shows. I click the tab to navigate to page B. On page B there is a list with product categories. I click one of the categories which makes me go to B-sub where the products for that category are shown. Clicking the back button would bring me back to page B. Another back-click would allow me to exit the app. Example 4 (the last one): Start the App and page A shows. I click the tab to navigate to page B. On page B there is a list with product categories. I click one of the categories which makes me go to B-sub where the products for that category are shown. Now I click the tab for page A, which makes me navigate to page A. Clicking the back-button this time would ask me to exit the App. In short: I see the pages belonging to the pages on the tabstrip as parent pages. When one of these pages is currently shown, the back button should close the app. No matter what previous navigation you have done. When on a child page (navigated from a parent page) and clicking the back-button (either hardware or software) will make you go back to it's parent page.