Declined
Last Updated: 09 Sep 2021 07:32 by ADMIN
Currently if you use a DropDownList in a mobile app, the picker popup is changed to an ActionSheet automatically. This may work well for phone-based applications but when creating tablet-based apps, this can be a clumsy and less than ideal selection presentation. Please allow for some configuration option to all the DropDownList to use its normal browser behavior even when running in  mobile application. Referenced here: http://www.kendoui.com/forums/kendo-ui-web/combobox/prevent-actionsheet-selection-in-mobile-app.aspx
Declined
Last Updated: 27 Oct 2021 13:04 by ADMIN
When multiple popovers are supported, clicking on a button to open popover1 should automatically close popover2.  Your popover demo demonstrates the problem, but bypasses the pain point by positioning the popover buttons on opposite sides of the form.  Often multiple buttons on a Nav bar will cause popovers, which will overwrite portions of each other when multiple are displayed simultaneously.  I tried a quick workaround, which didn't work.
Completed
Last Updated: 03 Feb 2017 10:56 by ADMIN
Created by: icebits
Comments: 6
Category: Kendo UI for jQuery
Type: Feature Request
22
Very hard to coloring the icon (only black and white if using sprites). I need to color the icon especially during validation when invalid. And second, I also want standardize icon in my project with glyphicons.
Completed
Last Updated: 23 Jan 2020 11:02 by ADMIN
Created by: Gary
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
4
The US Government requires that software they purchase be Title 508 Compliant, essentially ensuring the people with disabilities can use the software. There's a problem with Grid wherein the header and body are actually 2 different tables. This is a problem because screen readers can't associate the th in the first table with the td's in the second.

There may be other problems.

We'd like to be able to sell to the US Government. ;^)
Unplanned
Last Updated: 16 Nov 2021 15:26 by ADMIN
Created by: Gary
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
The new chart select feature is great but it only works with vertically oriented charts (column), but I need it for stacked bar charts. I'd also like to be able to disable the grab handles and programatically specify the range. I have multiple similar charts, a category-specific grid with additional info, and a dropdownlist for selecting the category. You can also select the category by clicking any of the chart elements.
Completed
Last Updated: 17 Jul 2014 15:15 by ADMIN
I would like to see a robust data-grid for tablets.  Bring over as many features from your desktop grid into the mobile world.
Completed
Last Updated: 20 Sep 2021 11:25 by ADMIN
Created by: Emre
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
5
Widgets like ExtJS viewport and form panel would be useful. Form input is most used UI elements at business applications and viewport for full screen placement.

kendoui would be contains some widgets for most common business applications needs.
Completed
Last Updated: 16 Dec 2021 13:47 by ADMIN
Created by: Marius
Comments: 10
Category: Kendo UI for jQuery
Type: Feature Request
47
A heatmap (grid-style at least) is very much useful in any decent project management application. A widget that could remotely connect color-shades to jSON data would be really great.
Completed
Last Updated: 27 May 2021 12:36 by ADMIN
Created by: Imported User
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
28
When using jQuery Validation in your forms, particularly with jQuery Unobtrusive Validation, the Kendo controls don't behave well from a styling perspective. In order to get things to work, you need to use a script like the one from this example:

https://github.com/telerik/kendo-examples-asp-net-mvc/blob/master/kendo-input-widgets-validation/KendoInputs_Validation/Views/Home/jQuery_KendoMvcValidate.cshtml

It would be nice if this script/support was better documented and potentially included as a supported mechanism rather than something each customer has to implement and tweak individually.
Declined
Last Updated: 20 Sep 2013 11:53 by ADMIN
Happens In chrome (and opera) when a grid is first rendered.
If you click the sort or filter icon, the grid becomes focused.  As a result, the browser scrolls the window, even though the grid is already focused.  This causes an issue if you have a fixed header, since the grid becomes obstructed.  The following is a modified version of existing kendo code, and will keep the grid where it belongs, so it does not move (works for us).  Hope it helps, and either way thanks for a great product:

   function focusTable(table, direct) {

     // MODIFICATION:
     // capture window x/y position in order to restore it at end of function.
     // this is necessary since chrome/opera will scroll focused elements into
     // view, even if they are visible.

     var x = window.x;
     var y = window.y;
     var scrollable = $(table).closest(":scrollable('vertical')");
     var scrollLeft= scrollable[0].scrollLeft;
     var scrollTop = scrollable[0].scrollTop;

     var msie = browser.msie;
     if (direct === true) {
         table = $(table);
         var condition = msie && table.parent().is(".k-grid-content,.k-grid-header-wrap"),
             scrollTop, scrollLeft;
             if (condition) {
                 scrollTop = table.parent().scrollTop();
                 scrollLeft = table.parent().scrollLeft();
             }

             if (msie) {
                 try {
                     //The setActive method does not cause the document to scroll to the active object in the current page
                     table[0].setActive();
                 } catch(e) {
                     table[0].focus();
                 }
             } else {
                 table[0].focus(); //because preventDefault bellow, IE cannot focus the table alternative is unselectable=on
             }

             if (condition) {
                 table.parent().scrollTop(scrollTop);
                 table.parent().scrollLeft(scrollLeft);
             }

     } else {
         $(table).one("focusin", function(e) { e.preventDefault(); }).focus();
     }

     if(browser.webkit || browser.opera) {
       window.scrollTo(x, y);
       scrollable.scrollTop(scrollTop);
       scrollable.scrollLeft(scrollLeft);
     }
  }
  
  function tableClick(e) {
    var currentTarget = $(e.currentTarget),
        isHeader = currentTarget.is("th"),
        currentTable = currentTarget.closest("table")[0];

    if (kendo.support.touch) {
        return;
    }

    if (currentTable !== this.table[0] && currentTable !== this.thead.parent()[0]) {
        return;
    }

    this.current(currentTarget);

    // MODIFICATION:
    // Removed timeout so the table can focus now (as required).
    // That way if the user clicks the filter icon first, the table
    // will focus and the filter menu will display.  Else table will
    // focus some 250 msecs from now, after the filter menu shows.
    // In such a case, the menu would blur immediately, and close.

    if (isHeader || !$(e.target).is(":button,a,:input,a>.k-icon,textarea,span.k-icon,.k-input,.k-multiselect-wrap")) {
        focusTable(currentTable, true);
    }

    if (isHeader) {
        e.preventDefault(); //if any problem occurs, call preventDefault only for the clicked header links
    }
  }

   ui.plugin(Grid);
   ui.plugin(VirtualScrollable);
})(window.kendo.jQuery);
Declined
Last Updated: 17 Sep 2013 14:34 by ADMIN
Created by: Ä m o l
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Kendo Grid Select Method is working good if you have only one grid on a page, but if you have more than one grid on the page then its not working properly.
To check this issue please check the following code snippet 

http://jsfiddle.net/amolkhot/AZz8z/1/

I also found solution for that, in select method of grid I saw that you guys are doing items=$(items) [Code Line # 25089 in kendo.all.js]
it has to be items = $(that.element).find(items)

I hope this change will be done in next release build.

Thanks,
Amol Khot
Declined
Last Updated: 20 Sep 2013 11:54 by ADMIN
Created by: Gabrielle
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
kendoui.all.js and kendoui.all.min.js are not from the same codebase. The bug appear to be in datawiz when trying to load data from the remote location and ammend it via dataFilter.
Minified version in my case works while the source populates the grid with undefined value. No error shown in console.
Completed
Last Updated: 26 Jun 2015 09:02 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
9
Allow the user to resize the editor textarea by dragging the lower right corner. A solution for doing this is given in the forums, but it would be great to have it as built-in functionality.
http://www.kendoui.com/forums/kendo-ui-complete-for-asp-net-mvc/editor/is-it-possible-to-give-the-html-editor-a-resize-grip-.aspx
Completed
Last Updated: 20 Nov 2014 19:25 by ADMIN
Created by: Stacey
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
18
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.
Declined
Last Updated: 02 Dec 2021 09:41 by ADMIN
Created by: Imported User
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
50
It would be great if there was a wrapper library for Ember.js similar to the kendo-labs libraries for Angular and Knockout.
Declined
Last Updated: 13 Sep 2013 16:10 by Roberto
Created by: Roberto
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
Actually the forms are created in a list. The label and the control elements are positioned side by side. For some cases it would be helpful to position the label above of the control element (see also WP8).
Completed
Last Updated: 22 May 2014 12:22 by ADMIN
Created by: Roberto
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
15
In an android phonegap app the user experience in forms is bad for selecting dates or scrolling lists (due to the use of the standard browser). It would be nice to get a set of widgets to get a consistent user experience for all platforms. Check also mobiscroll.com.
Declined
Last Updated: 11 May 2021 11:35 by ADMIN
Created by: Roberto
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3
kendo.mobile.ui.Loader: It would be helpful to get a configuration option to define an own loader or to provide a set of different loaders (including the well known simple "turning wheel").
Declined
Last Updated: 20 Nov 2014 19:27 by ADMIN
Created by: F
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
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 ?
Declined
Last Updated: 20 Nov 2014 19:27 by ADMIN
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