Declined
Last Updated: 22 Oct 2021 12:14 by ADMIN
I need homogenous data items for multilevels in your tree control.
Most data structures coming from our services are not homogenous.
We use the following to create a homogenous structure for the tree.
Maybe you could incorporate something like this - note that we use angular, and I use their $parse service in my implementation:

// CALLER:

          var levelDescriptors = [
            { item: "functionGroup", items: "functions" },
            { item: "this", items: null }];
          itemHierarchy = Portal.buildItemHierarchy(
            functionGroups,
            levelDescriptors,
            $parse);

// UTIL CODE:

    buildItemHierarchy: function(hierarchicalItems, levelDescriptors, $parse) {
      var hierarchicalDataItems = [];
      if(Portal.isDefined(hierarchicalItems)) {
        hierarchicalDataItems = Portal.createHierarchicalDataItems(0, hierarchicalItems, levelDescriptors, $parse);
      }
      return hierarchicalDataItems;
    },

    createHierarchicalDataItems: function(level, levelItems, levelDescriptors, $parse) {
      var levelDataItems = [];
      if(Portal.isDefined(levelItems)) {
        if(Portal.isDefined(levelDescriptors)) {
          if(level < levelDescriptors.length) {
            for(var i=0; i<levelItems.length; i++) {
              // extract datasource for current level.
              // create an associated node data item.
              var levelItem = levelItems[i];
              var levelDescriptor = levelDescriptors[level];
              var item = levelItem;
              if(levelDescriptor.item !== "this") {
                item = $parse(levelDescriptor.item)(levelItem);
              }
              if(Portal.isDefined(item)) {
                var levelDataItem = Portal.createNodeDataItem(item);
                levelDataItems.push(levelDataItem);
                // extract children for current level.
                // create associated (child) node data items.
                var items = $parse(levelDescriptor.items)(levelItem);
                if(Portal.isDefined(items)) {
                  var itemsLevel = level + 1;
                  levelDataItem.items = Portal.createHierarchicalDataItems(
                    itemsLevel,
                    items,
                    levelDescriptors,
                    $parse);
                }
              }
            }
          }
        }
      }
      return levelDataItems;
    },

    createNodeDataItem: function(item) {
      return {
        id: item.id,
        text: item.name,
        dataSource: item,
        expanded: false,
        items: []
      };
    },
Completed
Last Updated: 17 Jul 2014 14:29 by ADMIN
Created by: johaswe
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
8
I suggest that you implement a Waterfall/flying bricks Chart type.
Completed
Last Updated: 17 Jul 2014 14:41 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
There is interface inconsistency in some examples/demos using form-like ListViews. It can cause other developers use it as-is and get UX issues. Please check:
http://demos.kendoui.com/mobile/application/transitions.html#view-transitions-login
http://demos.kendoui.com/mobile/forms/index.html#/

If you click/tap between text label and center of list item (where input starts) nothing will happen. And that's wrong behaviour at least for iOS interfaces. Input editing should be activated on click/tap in any place of list item.

Fortunately, it can be easily fixed by adding display: inline-block and width: 100% to <label>
Completed
Last Updated: 21 Nov 2014 14:19 by ADMIN
Created by: Anupam
Comments: 19
Category: Kendo UI for jQuery
Type: Feature Request
132
Hi !   I was trying to create a scheduler using Kendo Scheduler. It seems that there is no way for me to create a timeline view like Telerik
Declined
Last Updated: 06 Sep 2013 16:52 by ADMIN
Given a object such as Person which has an optional child object such as IdentityDetails (1:0/1) I cant get this to work properly. I just dont want to show the template if identitysection is null. 

Even when hasIdentitySection returns false this produces an exception because it tries to evaluate identitySection which is null

<div data-bind="visible: hasIdentitySection">           
 <div data-bind="source: identitySection" data-template="identity-template"></div> </div> 
Declined
Last Updated: 20 Nov 2014 19:24 by ADMIN
Created by: MEHMET
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2
Your grid so successful but it must have filter row llike devexpress.
Declined
Last Updated: 06 Sep 2013 16:50 by ADMIN
Created by: Constantine
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Create kendoUpload:

var ku = $('#file').kendoUpload({});


Destroy it:
$('#file').data('kendoUpload').destroy();

Create again with files option:
var ku = $('#file').kendoUpload({
     files: [{name: 'name', size: '5000', extension: '.jpg'}]
});

and try to remove file by click on cross, you'll get exception:

Uncaught TypeError: Cannot call method 'remove' of undefined kendo.web.js:47077
Completed
Last Updated: 17 Jul 2014 14:34 by ADMIN
Created by: Roberto
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
The PanelTab of KendoUI can be integrated into KendoUI mobile. But it does not work smoothly. It would be very nice to get a new widget which is optimized for mobile platforms.
Completed
Last Updated: 17 Jul 2014 15:23 by ADMIN
Created by: Justin
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
Currently in data bound mode of the ScrollView doesn't allow filtering of the datasource.
Completed
Last Updated: 09 May 2016 16:52 by ADMIN
Created by: eko
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
13
Hi Kendo UI Team,

maybe in the future, you can add offline documentation bundled with the downloaded package, i think it would be nice, thanks
Completed
Last Updated: 20 Nov 2014 19:22 by ADMIN
Created by: Zachary
Comments: 7
Category: Kendo UI for jQuery
Type: Feature Request
21
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.
Declined
Last Updated: 22 Jan 2020 07:35 by ADMIN
Created by: Alex
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
If you have multiple axes shown on a chart it can be hard to determine which axis relates to a particular data point. 

Currently you can use color to visually tie them together (see http://demos.kendoui.com/dataviz/bar-charts/multiple-axes.html) but this isn't a great solution.

What would be nice is an option to highlight the appropriate axis when you hover over a data series point (similar to the new feature where data series is highlighted when you hover over the legend)
Declined
Last Updated: 26 Oct 2021 15:12 by ADMIN
Created by: john
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
Is there any plan to provide WEB API server wrap? If so, we can use it in web and mobile at the same time.
Declined
Last Updated: 08 Feb 2022 07:22 by ADMIN
Created by: William John Adam
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
12
Add a control similar to the one found here:
http://demo.aspnetawesome.com/LookupDemo/Index

I believe that all the components needed to create this control already exist, then it would suffice to encapsulate in a single control (plus a template for the form of research)

It would be something similar to edit popup already exists for the grid, except that would be linked to a texbox (or dropdownlist)


Declined
Last Updated: 09 May 2016 11:26 by ADMIN
Steps to reproduce the bug

1) create a grid that uses “In Cell” editing and have a validation on a cell (in this example i will use a required field)
2) click in the required cell
3) click out of the required cell to cause the validation error to fire
4) click back into the cell which had the validation error
5) press escape 
6) click into a different cell and enter a value
7) click out of the cell 

This will cause the cell the be edited but it will not be marked as dirty!!!

The issue is that multiple submit handlers are getting assigned to the form I’ve updated the following to remove submit handlers after submit has been called.

I made a change to the telerik.grid.editing.min.js file to resolve the issue.  setting the submit handler to null after submitting the form seems to do the trick

_validateForm: function (n) {
            var o = this.form();
            if (o.length) {
                var p = o.validate();
                if (p) {
                    this.validate();
                    p.settings.submitHandler = function () {
                        n();
                        p.settings.submitHandler = a.noop
                    };
                    o.submit();

                    p.settings.submitHandler = null;
                }
            }
        },

Completed
Last Updated: 09 May 2016 17:07 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
I would like the ability to make the End Date filed optional when creating a recurring appointment via the Kendo Scheduler.
Declined
Last Updated: 01 Oct 2021 12:58 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3
We use KendoUI more and more in our Dynamics CRM development.  Having the KendoUI support script# would make our choice to utilize Kendo even easier.  Today if we want to use Kendo then a separate TypeScript project is used.
Declined
Last Updated: 16 Aug 2013 18:38 by ADMIN
Created by: Duncan
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Using the following example project for a multiselect in a Grid:
http://www.kendoui.com/code-library/permalink/boByv66aG2OF1P8AAFTdxQ

Failure steps:
1) Run the project as-is.
2) Edit any grid line.
3) Add a Territory by typing the first few letters and pressing enter to select the highlighted item.
4) Save the grid line

Issue:
In the Update action, the ModelState is not valid and the Territories list in the EmployeeViewModel has null entries for the first X items (equivalent the the number of items existing before the update).

The data POSTed from the grid seems to be inconsistent. New items are posted as TerritoryViewModel-type objects but the existing items are posted as the value (id) only.

Note: Adding at least one item by clicking with the mouse magically resolves this issue and all items are posted as complete objects.
Declined
Last Updated: 25 Sep 2013 11:41 by ADMIN
Created by: hedayat
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
Currently templates for editing are just supported in the Popup mode. In many cases we need to change whole row in the Inline Editing mode.
In this occasion when the user pressed Edit button in the grid, all columns will be vanished and we are able to render a template with different controls and functionality. 
Completed
Last Updated: 04 Aug 2021 07:45 by ADMIN
Created by: Anaida
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
There should be a textbox bindind to a field available.