Completed
Last Updated: 12 May 2022 11:50 by ADMIN
Release 2022.R2.SP.next

The API docs for CheckboxGroup (https://docs.telerik.com/kendo-ui/api/javascript/ui/checkboxgroup/methods/value) states: "If passing an empty array, the value of the widget will be reset and the checked state will be removed from the selected checkboxes." But if you do this, it does NOT clear out any selections.

Code demo: https://dojo.telerik.com/IJOtaReh

Code snippit:

<ul id="checkboxgroup"></ul>
<script>
    $("#checkboxgroup").kendoCheckBoxGroup({ items: [ "one", "two", "three" ] });
    var checkGroup = $("#checkboxgroup").getKendoCheckBoxGroup();
    checkGroup.value(["two", "one"]);
    checkGroup.value([]);
</script>

 
Completed
Last Updated: 09 May 2022 16:02 by ADMIN
Release 2022.R2
Created by: Angel
Comments: 2
Category: Kendo UI for jQuery
Type: Bug Report
0

Hi guys,

I'm using the following dojo: https://dojo.telerik.com/UXUSUvEC

Here are the steps to reproduce:

1. Add the following to the HTML view of the editor: <span>Testing</span>
2. Switch back to the WYSIWYG mode
3. Hit enter twice to add two new line
4. Enter some text (e.g. "Text from WYSIWYG view")
5. Hit enter to add a new line
6. Switch back to HTML view
7. Notice how it keeps replicating the spans

HTML view will show the following

<p><span>Test</span></p>
<p><span>&nbsp;</span></p>
<p><span>Test from WYSIWYG view</span></p>
<p><span>&nbsp;</span></p>

I've discussed this with Yanko Dzhemerenov before submitting.

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
Declined
Last Updated: 02 May 2022 05:40 by ADMIN
Created by: Michael D
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
0

The ContextMenu widget supports navigating from one item to another using the up/down arrow keys. If an item is focused, it receives the "k-state-focused" class and highlights the item visually. However, as soon as this or any other item is hovered, all focus classes are removed and therefore the highlight disappears. When pressing the arrow keys again, it reappears again, but the focus always starts moving from the hovered item instead of the most recently focused item.

This behavior can be reproduced in the following DOJO: https://dojo.telerik.com/ACIpeYIm

  • Open the contextMenu
  • Press the "arrow down" key until e.g. "Item 4" is focused
  • Hover e.g. "Item 2" with your mouse, but do not click anything (now the focus disappears)
  • Press the "arrow down" key again (now "Item 3" is focused, although "Item 5" would be expected to be focused)

Unfortunately, we currently don't really see any way to fix this without directly modifying Kendo code or rebuilding the entire keyboard navigation ourselves, because the contextMenu keyboard navigation does not seem to set the DOM focus at all, but works with CSS-classes only.

Do you have any suggestions?

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: 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.

Completed
Last Updated: 13 Apr 2022 11:54 by ADMIN
Created by: Serdar Kilic
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
This is a proposal to have the excelExport function allow an array of columns to be passed through to it. This will then allow additional (hidden) columns of the grid (that is also available in the datasource) be able to be exported.
Completed
Last Updated: 17 Mar 2022 15:56 by ADMIN
Created by: Yifan
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I really want Kendo UI to be able to support inserting image header to the exported Excel
Completed
Last Updated: 15 Mar 2022 13:47 by ADMIN
Created by: Abdullah
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
5
i think if support qr code with centric logo very successfull.
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]
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

Need More Info
Last Updated: 09 Mar 2022 10:11 by ADMIN
Created by: Dmytro
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

Requesting a modification to any component that uses k-animation-container.

Some components have this capability:

popup: {
    appendTo: $("SOME ID")
}

This gives us the ability to modify CSS for a single/particular popup. Please add this ability to all relevant components.

Or any other method to modify the styling of a particular dropdown. In some cases, there's an ID that's added but is removed for some reason when adding a certain configuration.

Duplicated
Last Updated: 08 Mar 2022 09:15 by ADMIN
Created by: Murali
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3
We need legend in kendo map for our requirement.
Completed
Last Updated: 25 Feb 2022 09:14 by ADMIN
Release 2022.R1.SP.next
Created by: Thierry
Comments: 3
Category: Kendo UI for jQuery
Type: Bug Report
0

Hello, 

 

We have a project using kendo-angular with kendo-ui for jquery for some components (spreadsheet, gantt, datepicker, context-menu,..)

When we started the project we followed this doc https://www.telerik.com/kendo-angular-ui/components/framework/kendo-jquery/

 

I updated all our @progress/kendo-angular-xxx dependencies to latest versions and also kendo-ui to latest 2022.1.119

When I run the project with ng serve and the site starts, we directly have an error coming from kendo.colorpicker

Cannot read properties of undefined (reading 'options')     at kendo.colorpicker.js:279:181

 

I created an empty project with our dependencies and was able to reproduce the error. Please see attached zip file.

npm install  ->  npm run start   ->   http://localhost:4200/

Here the kendo dependencies we have:

"@progress/kendo-angular-buttons": "^7.0.2",
"@progress/kendo-angular-charts": "^6.0.0",
"@progress/kendo-angular-common": "^2.0.2",
"@progress/kendo-angular-dateinputs": "^6.0.0",
"@progress/kendo-angular-dialog": "^6.0.1",
"@progress/kendo-angular-dropdowns": "^6.0.1",
"@progress/kendo-angular-editor": "^3.0.4",
"@progress/kendo-angular-excel-export": "^4.0.3",
"@progress/kendo-angular-grid": "^6.0.3",
"@progress/kendo-angular-inputs": "^8.0.4",
"@progress/kendo-angular-intl": "^3.1.2",
"@progress/kendo-angular-l10n": "^3.0.3",
"@progress/kendo-angular-label": "^3.1.2",
"@progress/kendo-angular-layout": "^6.5.0",
"@progress/kendo-angular-pdf-export": "^3.0.3",
"@progress/kendo-angular-popup": "^4.0.4",
"@progress/kendo-angular-ripple": "^3.0.3",
"@progress/kendo-angular-toolbar": "^5.0.0",
"@progress/kendo-angular-treeview": "^6.0.0",
"@progress/kendo-data-query": "^1.5.5",
"@progress/kendo-drawing": "^1.16.2",
"@progress/kendo-licensing": "^1.2.2",
"@progress/kendo-theme-material": "^5.1.1",
"@progress/kendo-ui": "2022.1.119",

 

Regards,

Thierry FRITZ

Unplanned
Last Updated: 23 Feb 2022 17:16 by Christophe
Created by: Imported User
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
70
Today you can only export JavaScript primitive values - String, Number, Date, Boolean.

http://www.telerik.com/forums/export-grid-to-excel-cells-with-hyperlink
Completed
Last Updated: 18 Feb 2022 13:36 by ADMIN
Release 2022.R1.SP.next

Bug report
Window modal overlay missing when using KendoWindow that has the following configuration fo window1
{

modal: true,

draggable: {containment: "body"}

}

I aware that there is this forum talking about this issue, but the example is opeining both window without draggable.containment configuration.

The current easist workaround is dont set draggable.containment for window1

Reproduction of the problem
1. Run this dojo

2. Open window1, then open window2, close window2

3. The modal overlay for window1 dissapeared


Current behavior
When window1 has configuration for draggable.contaiment, its modal overlay will dissapear after window2 closed

Expected/desired behavior
The modal overlay for window1 should remain, closing window2 should not affect window1's modal overlay

Environment
Kendo UI version: 2021.2.616
jQuery version: 3.4.1
Browser: all

Completed
Last Updated: 18 Feb 2022 06:28 by ADMIN
Created by: Troy
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Any widget with the Template property should have a TemplateUrl property which allows the markup to be placed into an external html file similar to TemplateUrls in AngularJS components.
Unplanned
Last Updated: 18 Feb 2022 06:06 by ADMIN
Created by: Kenji
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
5
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.