Declined
Last Updated: 26 Mar 2014 08:30 by ADMIN
Created by: md
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
DropDown show problem when click on DropeDown.
Completed
Last Updated: 21 Mar 2014 17:49 by ADMIN
Created by: Pierre
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
On Kendo UI Demos, remember my settings (e.g.asp.net razor)
http://demos.telerik.com/kendo-ui/web/notification/index.html
if I view an example in its  Asp.net MVC razor incarnation for example, the site should remember these settings for my next example viewing.
Better yet, when I click on "Documentation", I should be taken to documentation in its Asp.net MVC razor  format!!
Completed
Last Updated: 21 Mar 2014 15:46 by Stephen
Created by: Stephen
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
It would be great if the Menu control could be auto-collapsed to fit a specified with.  If you've got more menu items than the width of your page can fit, it would be nice if the end menu items (or even menu items specified with a flag) would collapse to one nested menu item.  This should be dynamic as well.  Here is my specific example:

I've got my menu setup with controller actions attached.  Based on system permissions only the menu items the logged in user has access to will show up on the menu.  This works fine.  

A couple of the roles though have access to everything and when the menu shows all of the possible items, the menu wraps to 3 lines since it is wider than the width of my layout.  What I need is a way to auto-collapse the menu items at the end of the menu (down to one nested menu item) in the cases where it would wrap past 1 line.
Completed
Last Updated: 21 Mar 2014 13:30 by ADMIN
Created by: Pierre
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
VS extensions for  mvc 5.1+ soon!
Completed
Last Updated: 18 Mar 2014 10:54 by ADMIN
In our modern applications localization is part of designing a web application. An issue that I know to be ancient is the 'decimal point is comma' issue. In the USA f.i. a fraction and its integer are separated with a decimal point '1.75' but in Europe, in most countries, this is a comma '1,75'.

After selecting f.i. 'nl-NL' (Dutch) for localization the decimal point is no longer accepted as a separator in numeric fields. Most countries in Europe use keyboards with an 'English (United States)' layout meaning that on the numeric pad (to the right) a decimal point key is added not a comma.

Now when entering numbers with fractions in the web site users with such keyboards must type the comma key (on the left) in order to be able to enter the separator between the integer and fraction which is annoying.

It would be nice if Kendo UI would allow for the decimal point key in the numeric pad to be treated as a separator between integer and fraction
Declined
Last Updated: 14 Mar 2014 17:25 by ADMIN
Created by: Alexander
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Currently, the grid select method operates on the whole page which can easily be an issue if there is more than one HTML table.

Eg: $('#myGrid').data('kendoGrid').select('tr') should only select all rows but actually applies the 'k-state-selected' class to all <tr> elements on the page.

In cases such as $('#myGrid').data('kendoGrid').select('tr:eq(0)') may not select a row in your grid at all since it selects the first row anywhere on the.

Since I've already specified my grid by ID, I would expect the chain of functions to respect that.

Two possible workarounds are:
1. 
$('#myGrid').data('kendoGrid').select('#myGrid tr').
2. 
var grid = $("#myGrid").data("kendoGrid");
var row = grid.tbody.find("tr:eq(0)");
grid.select(row);
Completed
Last Updated: 14 Mar 2014 16:03 by ADMIN
Created by: Curtis
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
Add a "Trackball" feature in the chart for ASP.NET MVC UI (aka Kendo UI DataViz with MVC Wrappers) as described in the blogpost: http://blogs.telerik.com/iosteam/posts/14-03-04/trackball-and-annotations-for-chart-for-ios.-check.-demo-app-on-the-appstore.-check-
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.
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.
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.
Completed
Last Updated: 21 Feb 2014 15:45 by ADMIN
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?
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.
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: 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: 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.
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.
Declined
Last Updated: 14 Feb 2014 13:14 by ADMIN
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. 
Declined
Last Updated: 14 Feb 2014 13:03 by ADMIN
Created by: Ramin
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
itemsPerPage in kendo gird does not picked form lang files.
Declined
Last Updated: 10 Feb 2014 12:12 by ADMIN
Created by: Grzegorz
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
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.
Declined
Last Updated: 10 Feb 2014 10:18 by ADMIN
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.