Declined
Last Updated: 28 Feb 2024 07:07 by ADMIN

Hello everyone, I'm Darshan Hiranandani, currently grappling with CORS (Cross-Origin Resource Sharing) issues in my web application and could use some assistance. Has anyone encountered similar challenges and successfully resolved them? If so, could you please share any tips, tricks, or troubleshooting steps you used to overcome CORS issues in your projects? Any advice would be greatly appreciated. Thank you for your help!"

Declined
Last Updated: 23 Feb 2024 08:21 by ADMIN
Created by: license
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1

Currently, the kendo.culture() method accepts only a string argument which is used for mapping an included culture file.

However, it would be beneficial if additional arguments could be passed to the method as well which may override some of the culture file's existing options. For example:

kendo.culture("bg-BG", {
   numberFormat: {...},
   calendars: {...}
})

Declined
Last Updated: 10 Oct 2023 10:43 by ADMIN
Created by: Arash
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1

The children of a node (if the children are all leaf nodes) vertically stack when parent is expanded. Can you add a setting that forces horizontal sibling orientation for leaf nodes.

Current:

 

Desired:

Declined
Last Updated: 06 Aug 2023 11:26 by Akash

Hi team, please find the accessibility issue:

 

Component: https://demos.telerik.com/kendo-ui/datetimepicker/keyboard-navigation

 

Issue Name: 

Missing keyboard support for image buttons

 

Actual Result

Keyboard support is missing for "Open the time view" and "Open the date view" image buttons. This made it difficult for keyboard-only and screen reader users to access the functionality associated with the image buttons.

 

Steps to Reproduce

1. Navigate to the mentioned image buttons in the modal dialog.

2. Observe that the image buttons do not receive the keyboard focus.

Expected Results

The image buttons must be keyboard accessible.

 

Recommendation

Ensure that all the page functionality is available for all users irrespective of the device being used. 
Apply the following changes:
• Remove the tabindex="-1" attribute from the source code of the image buttons.
• Initially set the aria-expanded attribute to "false" for the image button. Ensure that the value of the aria-expanded attribute changes on user interaction via scripting.

 

Existing:

<button unselectable="on" tabindex="-1" class="k-select k-input-button k-button k-button-md k-button-solid k-button-solid-base k-icon-button" aria-label="Open the time view" type="button">
<span class="k-icon k-i-clock k-button-icon"></span>
</button>

 

Recommended

<button unselectable="on" class="k-select k-input-button k-button k-button-md k-button-solid k-button-solid-base k-icon-button" aria-label="Open the time view" type="button" aria-expanded="false">
<span class="k-icon k-i-clock k-button-icon"></span>
</button>

Also, the shortcut is there to open a date and time picker but relying on the shortcuts only to open it would not be feasible,

Declined
Last Updated: 21 Jun 2023 09:55 by ADMIN
Created by: Mark
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

we are extensively using the Kendo Jquery Grid for our datasets. The pager can be positioned at either the top of the grid or the bottom of the Grid using the configuratioon within the Grid Pager definition. I find having two pagers better when the display grid take up more than a  view port, then you can sometimes be closerto the top of the grid, sometimes closer to the bottom. If the Page is just at the top or the bottom then some cases you have to scroll throrough the  entire grid to get to the pager. So when it present at both, you can have eaiser access to the Pager.

So I am requesting that the position configuration in the grid is Top, bottom, Both.

 

 

Mark D

Declined
Last Updated: 21 Mar 2023 16:13 by ADMIN
tabstrip in mobile device easy to use for client if tab is scroll on touch instead of arrow button of left and right
Declined
Last Updated: 28 Jul 2022 06:05 by Nora
Created by: Tony
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2
Can you add a grammar check similar to MS word?
Declined
Last Updated: 12 Jul 2022 19:26 by Sunny

Hello, 

I'm looking to find a way to hide the Table tab and Cee tab on the Table Wizard. Is there a way to do this?

Thanks,

Sunny Carrandi

Declined
Last Updated: 09 Mar 2022 11:37 by ADMIN
Created by: Korstiaan
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1

Greetings

Currently, all dynamically added elements are being added to the document body, unless we specify an appendTo option.
When we look at the Angular library, we can specify a default container element there via an injection token.
It'd be great (and not that much work) to have that for jQuery (and thus MVC) as well, since adding/removing elements to/from the body causes high reflow times.
In some components, like when we use a filterrow inside a Grid, we can't specify an appendTo option for those dropdownlists, so having a global setting would help there as well.  

I currently have to manually edit the kendo.all.min.js file every release to manually insert a fix for this, since adding things to the body causes terrible lag for us.

Kind regards

Declined
Last Updated: 18 Feb 2022 06:00 by ADMIN
Created by: Hemin
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
In Desktop and Mobile version, Kendo Scheduler is displaying Date and Time based on TimeZone of Client's Browser. We are binding the Data in Kendo Scheduler and the UI will be rendered based on the TimeZone of client's Browser.
Upon further investigation I found out the property 'timezone' which needs to set to neglect client's Browser Timezone. The 'timezone' property is taking values of IANA Timezone and which is referred internally to kendo.timezones.min.js. We need to implement the Timezone as Windows TimeZone.
Declined
Last Updated: 16 Feb 2022 14:34 by ADMIN
Created by: Marc
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
You have a private Nuget feed for the KendoUI Professional packages. The package in that feed doesn't contain the typescript definitions.  

However, if I download the *.zip version of the KendoUI Professional from the "Your Account" area of the web site, it contains the TypeScript definitions.

Please add the TypeScript definitions to the NuGet package.
Declined
Last Updated: 16 Feb 2022 14:27 by ADMIN
Kendo UI jQuery Scheduler: grab a task (appointment) to cells, without displaying the lines of separation.
Set an interval property for the drag and drop, which will be defined, 15 or 30 minutes or even smaller, without necessarily having to display the lines of separation (minorTickCount) increases in this case the height of the cells.
Declined
Last Updated: 16 Feb 2022 14:25 by ADMIN
Created by: WarnerB
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
the only way to style only the mulitselect dropdown list differently than other dropdown lists is to run a js script to add a css class...

  function setupMultiSelectULStyle (styleName) {
    var selects = $("select");
    $.each(selects, function(index, item) {
      var data = $(item).data("kendoMultiSelect");
      if (data !== undefined && data !== null)
        setupMultiSelectULStyleSingle(data, styleName);
    });
  }

i think if you are creating elements that are not wrapped in parent element style they should have some way to style by parent control type differentiated css selector


<div class="k-list-multiselect k-list-container k-popup ... " id="..." >
<div class="k-list-dropdown  k-list-container k-popup ... " id="..." >
Declined
Last Updated: 16 Feb 2022 14:25 by ADMIN
Created by: Geoffrey
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
You can enter cross sheet references manually, but end users would like being able to copy from one sheet to another creating a cross sheet reference instead of copying the value
Declined
Last Updated: 08 Feb 2022 07:26 by ADMIN
Created by: kencox
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
7
Microsoft's new Azure Portal uses an innovative UI with "blades" that scroll horizontally to the right. This is a very effective paradigm.

It would be great to have a Kendo UI control (and MVC wrapper) to manage and create these blades
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: 08 Feb 2022 07:18 by ADMIN
Add ability to have graph "scroll" like a stock ticker. This would allow for the graph to dipslay large X axis values while still contained smaller graph area.  This woudl also help with displaying dataviz on mobile applications as it would give virtual space to the smaller devices.
Declined
Last Updated: 04 Feb 2022 09:38 by ADMIN
Created by: Warner
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2
There is s set precedence among many of your Kendo UI controls in providing a tool tip option, yet the NumericTextBox is not one of them. 
Declined
Last Updated: 03 Feb 2022 12:14 by ADMIN
Need to add Workbook methods to configure how exported Excel will print.  Including orientation, paper size and others.
Declined
Last Updated: 03 Feb 2022 12:14 by ADMIN
1 2 3 4 5 6