I'm using a Kendo Mobile View and I've set the data-zoom attribute to true ("data-zoom = true") so that my view can Pinch and Zoom. I would like an attribute that I can set to limit the size in which the Pinch and Zoom resizes the contents? I want to set a max and min size. I want to make my view so that it can zoom in but I want to constrain the view so that it doesn't get smaller than 100% of the viewport width. I like to set the min-width equal to the viewport width in some way. Any help would be greatly appreciated.
itemsPerPage in kendo gird does not picked form lang files.
Make common elements publicly accessible. Most notably, root objects like ui.Widget, ui.List, and data.DataSource objects, and sub functions like parseOption and parseOptions, are all internally referenced. You cannot extend any of them to provide global functionality to the elements that inherit from them. kendo.ui.List and kendo.data.DataSource were particularly frustrating to debug, since the externally available versions are only copies of the real internal objects. I tried to add global functionality that never worked until I realized that the real inherited objects were closure objects.
Former Telerik Extension Forum has been disabled. There are still numerous projects where MVC Extensions are used and it is necessary to keep this forum at least in a read only mode.
Using Kendo Mobile and testing on Apple products using the AppBuilder companion app. The Header Templates randomly disappear. They will redraw when the device is rotated or if the header is click on by the user. I'm using the listview in a Drawer.
You have the best looking scheduler but seriously lacking some good recurring functionalities, and time zone as well. When can we expect these to be available?
I would like to have the menu at the bottom of the page and the submenu items to pop up not down. It would also be nice if I could easily change the height of menuitems.
provide the features for Enable disable button in kendo mobile.
Currently drawer's automatically add a scroller wrapper. Sometimes you want the content in the drawer to automatically stretch to fit the drawer.
Add select ability to Scheduler, similar as to grid, which will expose the event data item selected. This will allow for the creation of a read only detail view of the item selected. Currently, editable cannot be configured without allowing some combination of edit, delete and update.
Using visual studio appbuilder plugin. The "Debug on Device" window does not provide the "Take heap snapshot" option to do memory profiling on the device. This is available in the simulator. It would be good if this was available to check on device memory usage when debugging.
The datasource change handler gets fired very proactively. Sometimes you have to subscribe to this to kick off other item.set(...) calls or to even update DOM UI or widgets. When you are about to update a lot of objects in a datasource it would be good to be able to pause the change handler, then unpause it. When un-paused can the backlog of events fire as one event? I don't want to un-subscribe from the change handler as I don't want to miss some of the events whilst I am updating items in the datasource.
add a popup selection box control
The date/time controls in the UI for Windows suite allow you to easily select dates and times with keyboard, mouse, and touch. By avoiding the calendar and selecting the date, month, and year separately it is quicker and easier for a user to select a date.
Please consider adding the onRowSelect event back to the grid so that it functions like it did in the free telerick code before Kendo. In Kendo If you have data and buttons (edit, destroy) on the same row: if you click one of the buttons it will act as if you clicked the data to select it. Also, you have not provided any documentation as to how to work around this kind of problem.
The comboBox widget does not offer a clear (X icon) when given focus with FireFox or Chrome. IE10 seems to work fine. I experience this behavior on the Demo cite.
It would be nice to have a "Show all" option on the grid, allowing to display all items on it
The select event of the DropDownList passes an event argument e. One of the members of said argument is e.item. Contrary to what every sane developer expects, e.item is *not* the dataItem of the datasource bound to the DropDownList, but the DOM element that represents the item visually. The way to get to the data item is *undocumented*. Here's the necessary code: domElem.kendoDropDownList({ /* ... */ select: function(e){ var dataItem = e.sender.dataItem(e.item.index()); // ARE YOU KIDDING ME? } }); Please, PLEASE, pass the data item in the event argument. I can't think of any case in which i would prefer the DOM element in the select handler over the data item.
It's March 5th. When is that Q1 release (or Beta) with the frozen / locked column feature going to be available?
Hi, In kendo Line chart, currently the plot area can be colored using plotBands. In line with that is the requirement to color different ranges with different colors in the y-Axis line alone. The line size can be made to 3 or 5 px to shown the color clearly. This will help the user 1. to understand the criticality of the different ranges. 2. Mostly line charts will be shown shown in reports, and will be given as printouts to the patients (in case of hospitals), a report will have multiple line charts components, providing this feature will help the customers to reduce the cost on printer color catridges (that will be used when printing the whole plotbands for different ranges). Thanks.