Unplanned
Last Updated: 20 Sep 2022 10:07 by ADMIN
Created by: Aleksandr
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
1

basically based on (it will work till you change the font size settings in the browser (chrome://settings/appearance -> front size), it will lead to )

https://www.telerik.com/forums/image-only-on-command-buttons

and (without text, but without tooltip too)

http://dojo.telerik.com/@Iliana/aJeme

would be great to have such buttons out of the box

 

 

 

Unplanned
Last Updated: 05 Sep 2022 09:58 by ADMIN

If you create a spreadsheet in excel and just have the below formula - it locks up when you activate the sheet. 

Or if you use the kendo spreadsheet and paste this into a cell, it also locks up.

=WORKDAY(TODAY(),-1)
Unplanned
Last Updated: 05 Aug 2022 10:22 by ADMIN

Hi,

The percent complete column does not work!  If you use any other gantt product (including Microsoft project).  When you enter the % complete, it's between 0 and 100, which is a universal standard around the world.  % complete is never between 0 and 1.  Please correct the Gantt tool to use the universal standard.

The usability of product will be much improved and users will like it.

Thank you!

David

Unplanned
Last Updated: 21 Jul 2022 08:09 by Peadey
Created by: Peadey
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2

I would like to have the possibility to globally change the default styling options of all the widgets with a single declaration. Something like kendo.ui["all"].fn.options["size"] = "small";

The article below demonstrates how the style options can be changed per widget. I would like to be able to change the default style options globally for all the widgets. 

 - https://docs.telerik.com/kendo-ui/styles-and-layout/components-rendering-overview#overriding-default-widget-options

Regards

Unplanned
Last Updated: 18 Mar 2024 09:24 by ADMIN

The "Classic" SASS theme for Kendo UI (v. 5.4.0) provides the $enable-transitions variable. I expected it to behave consistent with other similar variables like $enable-rounded which means that when it is set to false, no transistion properties would be set.

However, the following elements always have a transition property set, no matter what the value of $enable-transitions is:

  • .k-button::before
  • .k-list-item

Is this a bug or did I understand the meaning of $enable-transitions wrong?

Unplanned
Last Updated: 18 Mar 2024 10:46 by ADMIN
Created by: Michael D
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
1

The Kendo UI Popup's "collision" option allows to specify how its positioning algorithm should handle situations where there is not enough space. When "collision" is set to "flip" and there is not enough space to display the popup where it was configured to be displayed (via origin and position), it flips to the other side of its anchor (documented here). If there is no space on the other side either, it flips back to the original position.

I've created an example situation where this happens in this DOJO. You might have to resize the browser window a bit to make the content on either side of the input smaller than the popup's width. As you can see, the position of the popup now is the least fortunate one:

  • It would make more sense to flip, despite there being not enough space, because more content could be displayed on the left side than on the right side.
  • It would be even better if the popup detected that neither sides provides enough space and instead reduced its size - the size is not fixed but determined by the content.

One might think I could set the popup's width to "min-content" via CSS to force wrapping, but this always wraps the content and wherever possible. Is there any way to make the popup's content wrap, but only if necessary?

Unplanned
Last Updated: 17 Jun 2022 09:43 by ADMIN
Created by: SWAT
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3

Hi,

 

Currently, we can't control the print settings of the exported excel file. It will help if we can set things like "landscape","Fit t page" , etc. so that users will not have to repeat these changes for printing every time they export the KendoGrid.

 

Thanks.

Unplanned
Last Updated: 01 Jun 2022 06:36 by ADMIN

Follow-up of https://feedback.telerik.com/kendo-jquery-ui/1516557-typescript-definition-of-jquery-data-method-does-not-include-undefined

The mentioned type is still missing for:

- kendoAvatar

- kendoCheckBox

- kendoListView

- kendoOrgChart

- kendoRadioButton

Unplanned
Last Updated: 02 May 2022 05:36 by Michael D
Created by: Michael D
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Bug report

ContextMenu allows having focused and hovered items simultaneously.

Reproduction of the problem

1. Open the Dojo
2. Right-click to open the ContextMenu and hover over the first item.
3. Start navigating in the ContextMenu with the down arrow without moving the cursor

Current behavior

There is an item marked with 'k-hover' class and an item marked with 'k-focus' class.
image

Expected/desired behavior

It is supposed to have a single active item in the ContextMenu.

Environment

  • Kendo UI version: 2022.1.412
  • Browser: [all ]
Unplanned
Last Updated: 03 May 2022 11:48 by ADMIN
We just upgraded the kendo library to a new release ( 2022.1.301) and we are switching column menu style to "Modern". It works for grids but not for TreeList Grid.  After discussion with support we were able to manually turn it on for treeList, but found that it's really hard to implement custom menus. We were able to implement custom menus easily using "Classic" menu style. We decided not to use "Modern" menus in our application. Below is the support issue which explains the issue in detail.

Support Issue: https://www.telerik.com/account/support-center/view-ticket/1561941

I hope you provide proper exposed options for extending the column menu items.

Thanks
Unplanned
Last Updated: 29 Apr 2022 12:36 by ADMIN

Kendo introduced a setting for each filter to be case sensitive or not, depending on a setting or derived by defaults (like case-insensitive for 'contains').

https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/columns.filterable.ignorecase

However, when the Datasource for OData-v4 builds the filter, the setting is ignored and the filter always looks like:

$filter=Field eq 'Test'

or

$filter=contains(Field, 'Test')

A custom parameter map is needed to fix that behavior, however, it should be provided by the datasource directly. A case insensitive filter should look like this:

$filter=tolower(Field) eq 'test')

or

$filter=contains(tolower(Field)), 'test')

where 'test' has been transformed of the entered search value with: value.toLowerCase().

Unplanned
Last Updated: 28 Apr 2022 06:51 by ADMIN

As of today, the Datasource seems to be fully compatible with OData-v4, however, when server-side grouping and aggregation is enabled, we still need to provide a parametermap to correctly encode the group[] and group[aggregates[]] into the URL.

The OData specification should be followed and the URL build by the Datasource when the type is set to "odata-v4":

$apply=groupby((Field1, Field2))

or

$apply=grouppy((Field),aggregate($count as CountField))

thus saving the developers from providing their own encoding implementation.

Unplanned
Last Updated: 09 Mar 2022 16:40 by Scott
Created by: Scott
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Bug report

The download functionality of the PDFViewer component and when downloading PDF using kendo.saveAs() method doesn't work on some iOS mobile devices.

Reproduction of the problem

  1. Open the PDFViewer demo or the PDF Export Demo
  2. Try to export the file to PDF on iOS device

Note: On some iOS devices the PDF is exported as expected, but on others, nothing happened.

Current behavior

Currently, on some iOS devices, the PDF is exported, on others, it is exported, but there is a warning "This form is not secure, are you sure you want to submit it". After approval, the file is downloaded. On some iOS devices after clicking the button to download the PDF file nothing happens.

Expected/desired behavior

It should be possible to download the PDF file on all iOS devices.

Environment

  • Kendo UI version: 2022.1.301
  • Browser: [iOS XX Safari]
Unplanned
Last Updated: 18 Mar 2024 10:36 by ADMIN
Created by: Michael D
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
1

The popup widget provides a setOptions() method that allows to update the options after initialization (as documented here: https://docs.telerik.com/kendo-ui/api/javascript/ui/popup/methods/setoptions). However, setOptions does not update the collision settings. This can be witnessed in the following DOJO: https://dojo.telerik.com/UbiKumIg.

When reducing the window size until the popup is forced to change its position, it still uses the "fit"-behavior, although setOptions() has been called with "fit".

A quick check in the sources revealed that the widget caches the collision settings internally in a form that is easier to work with than the configuration string. However it is never updated on setOptions().

Unplanned
Last Updated: 28 Jan 2022 18:24 by ADMIN
Created by: Nick
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2

Hi Team,

I'd like to request a tool which can parse an Excel File to JSON easily.  

Thank you!

Unplanned
Last Updated: 02 Feb 2022 07:52 by ADMIN
Scheduled for 2022.2
Created by: Don Leduc
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
1

Steps to reproduce the behavior:

  1. Run the jQuery Virtualization Demo
  2. Open the popup of the Widget

Expected behavior
The header and rows shouldn't overlap

Screenshots
image
Affected package

  • seems to affect all Themes

Affected suites

  • Kendo UI for jQuery

Unplanned
Last Updated: 22 Jan 2022 12:18 by ADMIN

Bottom navigation is obviously at the bottom in portrait mode, but on small screens in landscape mode it is detrimental to scrolled content.

It makes sense to keep bottom navigation on the small side of the screen but this requires to lock the app in portrait mode.

While allowing a change of orientation, it would be nice to have the option to show the bottom navigation on the right side and rotate the items when changing orientation to landscape and then back to the bottom when changing orientation to portrait.

Unplanned
Last Updated: 28 Nov 2022 14:41 by Jeff
Created by: Francis
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
26

https://svelte.dev/

Looks to be so much better than React.

 

Unplanned
Last Updated: 20 Dec 2021 06:18 by ADMIN
Created by: Austin
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1

For the Kendo Filter widget, being able to filter the list of fields in the dropdown list would be useful for longer lists and an event to see when the user added or removed a filter condition to manually set any other options for these lists. I have modified your sample filter in the browser console to add the filter to the dropdown in the screenshot here.

Unplanned
Last Updated: 09 Dec 2021 09:17 by ADMIN
Created by: Yoshitaka
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1

Hi

 

Currently, items binding is not supported by the FloatingActionButton widget in MVVM.

Therefore, the items need to be defined in HTML statically.

It would be great if it is supported so that I can dynamically set the contents for FloatingActionButton in MVVM.

Here is the desired example.

https://dojo.telerik.com/oDopiCAN

 

Thanks in advance.