Declined
Last Updated: 20 Nov 2014 20:07 by ADMIN
Created by: Paul
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2
I know it's still in beta, but it would be nice
Completed
Last Updated: 07 Mar 2014 14:48 by ADMIN
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.
Completed
Last Updated: 09 May 2016 17:15 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
4
Allow the user to execute certain methods of the widget and inspect the result.
Completed
Last Updated: 11 May 2016 07:52 by ADMIN
Created by: Yvan
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
It would be nice to have a "Show all" option on the grid, allowing to display all items on it
Completed
Last Updated: 05 Oct 2015 12:48 by ADMIN
It will be nice to have keyboard support for Grid with Virtualization of remote data (odata) and virtual scrolling enabled.

As it can depicted in your demo:
KendoUI meets Wakanda, http://wakanda.spirit.de:8081/

if you try to press key down, the grid is not scrolling down when you bypass the limit of visible rows. In addition, if you scroll down using mouse (scrollbar), if you try to press key up then the grid is not scrolling up. Also, keyboard keys page up / down, home, end and in general keyboard functionality is not supported. 

Despite of keyboard support, your demo is impressive!

Regards.

Thomas
Declined
Last Updated: 03 Mar 2014 08:46 by ADMIN
Created by: Richard
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
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.
Completed
Last Updated: 02 Mar 2021 18:10 by ADMIN
Created by: Marty
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
1
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.
Declined
Last Updated: 14 Oct 2021 11:08 by ADMIN
When you have a ListView that can show thousands of records (presumably using a remote dataSource), it would be very useful to be able to start at a given point in the list, rather than having to start at the top of the list and scroll down thousands of records to get to the point you want.

This is currently possible to do when you have a ListView with set number of records that are all displayed at once by using the view's .scrollTo() function, but not possible when endlessScroll is on on the ListView.

Here is my original support ticket and the response I received regarding this matter:

<BEGIN MY SUPPORT TICKET>
I have a ListView which has a remote dataSource.  EndlessScroll is on in the ListView.  That part works as expected.  However, at times I need to programmatically "scrollTo" a particular point in the ListView.  To do this, I call .scrollTo() on the view's scroller (e.g. $('#MyView').data('kendoMobileView').scroller.scrollTo(0, -725)).  If I .scrollTo() a point that is too far down the page, sometimes the data doesn't show or only a couple of records/rows show and the "loading" icon is beneath them.  Here is an example of what I mean.

Given that we have a ListView with endlessScrolling on to which is attached a dataSource that reads from a remote url and has a pageSize of 50.  If we .scrollTo() about 25% down the list (approximately 13 rows down), everything works fine (i.e. after the .scrollTo() completes, we are at the row we want and all the records are there).  However, if instead of 25% we .scrollTo() about 60% down (approximately row 30), none or only some of the records with a spinning "loading" icon will be visible.

Based off of what I read here http://docs.telerik.com/kendo-ui/getting-started/mobile/listview#press-to-load-more-/-endless-scrolling, I believe what is happening is that since the ListView "adds" more of the records from the page that was retrieved from the dataSource as you scroll down the list when in virtual mode, if we .scrollTo() too far down the page, the ListView isn't smart enough to know to "add more" rows to the DOM and also make a call to the next page of the dataSource if it is necessary.  Basically, I believe ".scrollTo()" needs to trigger the ListView to add to the DOM and make a call to the next page of the dataSource the same way that scrolling with your finger would do.

I hope there is a solution/fix/hack to this because I have spent many hours on this.
<END MY SUPPORT TICKET>


<BEGIN TELERIK'S RESPONSE>
Thank you very much for the detailed information.

I am afraid that when the ListView is used in "endless scrolling" mode the scrollTo() method will not work as expected. The main idea behind the endless scrolling functionality is to load records on demand and load only the elements that the user wants to see, this is why the elements displayed are constantly changed as new items are loaded.

Currently there is not a workaround that I can offer. If you really want to see this functionality added in the future I would suggest you to check our uservoice section, where you can post this as a feature request, so it will be considered for a future implementation.
<END TELERIK'S RESPONSE>
Declined
Last Updated: 28 Feb 2014 13:54 by ADMIN
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.
Unplanned
Last Updated: 12 Aug 2021 13:32 by ADMIN
Created by: Michaël
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
7
It should be nice if we could set a background color using a gradient for DataViz area charts.
Declined
Last Updated: 02 Mar 2021 18:15 by ADMIN
Created by: Ahmet
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
add a popup selection box control
Declined
Last Updated: 21 Feb 2014 14:22 by ADMIN
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.
Declined
Last Updated: 21 Feb 2014 14:25 by ADMIN
Created by: Adrian
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
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.
Declined
Last Updated: 14 Oct 2021 11:06 by ADMIN
Created by: Stacey
Comments: 6
Category: Kendo UI for jQuery
Type: Feature Request
4
In followup to my last statement about adding data to the validation events, Kendo UI's validator would be greatly, greatly, GREATLY augmented with an extremely simple function...

onErrorDisplay(target, message, invalid) {

}


The sole purpose of this function is to allow users to hook into it, and custom handle error display more finely. It is fairly simple to add, look at line 11924 of the kendo source file; At Line 11948, there is the code to show the error message. The onErrorDisplay function would allow for catching that and interpreting it differently if requested.
Declined
Last Updated: 11 Mar 2021 15:52 by ADMIN
Created by: william
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
4
We need to have multi-select added to PanelBar to support our customers.....
Declined
Last Updated: 21 Feb 2014 14:44 by ADMIN
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.
Declined
Last Updated: 14 Oct 2021 10:56 by ADMIN
Created by: Adrian
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Currently drawer's automatically add a scroller wrapper. Sometimes you want the content in the drawer to automatically stretch to fit the drawer.

Declined
Last Updated: 21 Feb 2014 15:33 by ADMIN
Created by: ravindra
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
provide the features for Enable disable button in kendo mobile.
Completed
Last Updated: 14 Feb 2014 13:56 by ADMIN
Created by: Kjartan Valur
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
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.
Completed
Last Updated: 20 Nov 2014 20:04 by ADMIN
Created by: NathanMST
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
2
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