Unplanned
Last Updated: 21 Nov 2024 09:52 by Steven

Currently, the Virtualized DropDownList does not handle the autoWidth property, as describe in the offical client-side API documentation.

It would be beneficial if there is a way to circumvent around this limitation.

Unplanned
Last Updated: 20 Nov 2024 08:25 by Chris

Bug Report

The diagram.exportImage() throws an error with v.2024.4.1112 

"Uncaught TypeError: diagram.exportImage(...).done is not a function"

Regression with 2024.4.1112.

Reproduction of the problem

Run the example from the following API: https://docs.telerik.com/kendo-ui/api/javascript/dataviz/ui/diagram/methods/exportimage

Current behavior
The export is not working.

Expected behavior
No error shall be present and image must be generated.

Environment
Kendo UI version: 2024.4.1112
jQuery version: x.y
Browser: [all]

Unplanned
Last Updated: 20 Nov 2024 07:04 by Kevin Smith

I have a Kendo Grid that follows the Set Multi-Checkbox Filtering to Use contains instead of equalTo.

- https://docs.telerik.com/kendo-ui/knowledge-base/grid-how-to-change-multi-checkbox-filter-to-contains 

This works, I am able to filter the Grid on contains condition; but after filtering and opening the column filter again, the checkbox is not selected and shows unchecked. 

I managed to fix the issue and persist the checkbox selection using the following approach:

columnMenuOpen: function(e){
            if(e.sender.dataSource.filter()){
              e.sender.dataSource.filter().filters.forEach(function(f){

                if(f.field == "OrderID" || f.field == 'ShipCountry') {
                  var checkbox = e.container.find("input[value='"+f.value+"']");
                  if(checkbox[0] && !checkbox[0].checked){
                    e.container.find("input[value='"+f.value+"']").click()  
                  }          
                }else if(f.filters[0].field == "OrderID" || f.filters[0].field == 'ShipCountry'){
                  var current = f.filters;

                  current.forEach(function(filter){
                    var checkbox2 = e.container.find("input[value='"+filter.value+"']");

                    if(checkbox2.length > 0 && !checkbox2[0].checked){
                      e.container.find("input[value='"+filter.value+"']").click()  
                    } 
                  })
                }
              })
            }
          },

Demonstrated also in the Dojo linked here - https://dojo.telerik.com/MBDcImcj.

I would like to see the functionality built-in, so I don`t need to customize the Grid behavior in its columnMenuOpen/filterMenuopen event hanldlers

Regards

Unplanned
Last Updated: 18 Nov 2024 09:54 by barry

Bug report

When the toggleOnClick option is set to true, the hide method doesn't hide the Popover

Workaround: https://dojo.telerik.com/JhWNDQrv (works only in the custom scenario when the hide method is called on scrolling the page. It will not work when the call method is called on button click)

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/hVdauDSd/4
  2. Scroll the page, which will call the hide method.

Current behavior

The Popover remains visible

Expected/desired behavior

The Popover should hide

TicketID: 1669787

_

Environment

  • Kendo UI version: 2024.4.1112
  • Browser: [all]
Unplanned
Last Updated: 18 Nov 2024 08:30 by Thomas
Created by: Thomas
Comments: 0
Category: Form
Type: Feature Request
1

Please add support for nesting groups in the form-control. 

As written on your page https://docs.telerik.com/kendo-ui/controls/form/groups nesting of groups is not supported.  

As we are developing a highly configurable software we have the need to edit properties of json-objects via UI for the needs of our customers. A schema for validating fields and so on exists, but unfortunately we cannot use "form"-Control because the objects do have nested objects in multiple hierachy levels. 

Therefore nesting of groups would be really great.

Unplanned
Last Updated: 15 Nov 2024 16:53 by FranckSix

Bug Report

When creating the Grid from pre-defined HTML table, the header cells are missing classes. That results in inconsistency when using the Themebuilder to style the component.

Reproduction of the problem

  1. Open this Dojo example, which contains a Themebuilder-generated stylesheet - https://dojo.telerik.com/wpmTrWPf/3

Current behaviour

The HTML for the first column is manually added to the predefined markup. The second column is left as it is. As a result, the second column is not being styled according to the stylesheet because it is missing HTML and classes

Expected behaviour

The Grid should render the column headers as if (or at least similar ) they are defined through the columns configuration.

Unplanned
Last Updated: 15 Nov 2024 15:26 by Sarah
Created by: Sarah
Comments: 0
Category: Grid
Type: Feature Request
1

Enhancement

Include page size `All` to work for restoring options with setOptions()

Reproduction of the problem
Currently the `All` page size is not working correctly when filtering is applied/cleared

Dojo: https://dojo.telerik.com/hAenriDe

1. Set page size to `All`.

 2. Set a filter.

 3. Save the state.

 4. Load the state.

 5. Set a new filter (Or clear the current one).


Environment
Kendo UI version: 2024.4.1112
jQuery version: All Supported Versions
Browser: all

Unplanned
Last Updated: 15 Nov 2024 14:10 by Bradley

Bug report

When using a draghandle to drag a same level item below another item, it will not drop in the correct place.

Reproduction of the problem

  1. Go to this Progress Kendo UI Dojo.
  2. Try to drag Brian under Lillian as soon as the indicator says it's okay.

Current behavior

The item will revert back to the original position.

Expected/desired behavior

The item should be place in the expected dropped location.

Environment

Unplanned
Last Updated: 15 Nov 2024 08:19 by Huguette

Expose the ability to explicitly alter a given column's width upon exportation. Currently, such an implementation would require either a:

  • Programmatical alteration to the column's width.
  • CSS rule with ".k-pdf-export" prefix.
Unplanned
Last Updated: 14 Nov 2024 15:57 by Suresh

Hi Team,

I would like to request properties to define Column/Row alignment in the TaskBoard to allow wrapping cards within the containers.  

Thank you!

Unplanned
Last Updated: 13 Nov 2024 11:49 by Bradley

Bug report

With later jQuery versions, if the TreeList's toolbar is configured, and the scrollable option is set to false, the dragging indicator is misplaced. The issue does not reproduce with jQuery 1.12.3.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/hPQIFuFo/6
  2. Drag a row, and observe where the dragging indicator is.

Current behavior

The dragging indicator is misplaced

Expected/desired behavior

The dragging indicator should be positioned correctly to show where the row will be dropped

Environment

jQuery: 3.7.0
Kendo UI version: 2024.3.1015
Browser: [all ]

Unplanned
Last Updated: 12 Nov 2024 21:49 by Laurie
Created by: Mohamed
Comments: 7
Category: Captcha
Type: Feature Request
5
As of .NET 6, the System.Drawing.Common is supported on Windows only:
https://docs.microsoft.com/en-us/dotnet/core/compatibility/core-libraries/6.0/system-drawing-common-windows-only

Since the Telerik.Web.Captcha NuGet package depends on the System.Drawing.Imaging, we should consider migrating to an implementation that does not depend on the System.Drawing
Unplanned
Last Updated: 12 Nov 2024 09:01 by JORGE

Bug report

Dragging a card in the TaskBoard selects text in other cards

 

Reproduction of the problem
Open the next demo: https://demos.telerik.com/kendo-ui/taskboard/templates

Drag a Card and observe the automatic selection

Expected/desired behavior
No text shall be highlighted

Environment
Kendo UI version: 2024.3.1015
Browser: [all ]

Unplanned
Last Updated: 11 Nov 2024 15:40 by Mark
Created by: Razvan
Comments: 1
Category: Upload
Type: Feature Request
2
Hi Team,

I understand at the moment it is not available, but I would like to see drag and drop functionality in the future for the Kendo UI Upload's Synchronous mode.  

Thank you!
Unplanned
Last Updated: 11 Nov 2024 14:16 by Daniel

Bug report

<script> tag gets executed on drag when encoding is enabled in Grid

Reproduction of the problem

Dojo: https://dojo.telerik.com/MkqjldFK

Drag the row by the drag handle

Alert gets executed

Expected/desired behavior
<script> should not be executed

Environment

jQuery: 3.7.0

Kendo UI version: 2024.3.1015
Browser: [all ]

Unplanned
Last Updated: 06 Nov 2024 18:15 by Sumit
Created by: Sumit
Comments: 0
Category: Spreadsheet
Type: Feature Request
1

Hi Team,

I would like to request to include the Embed function for the Kendo UI Spreadsheet to include objects such as PDF files into the Spreadsheet. 

Thank you!

Unplanned
Last Updated: 06 Nov 2024 13:21 by David

Bug report

When a card in the TaskBoard is moved if the server returns an error the move could not be prevented. Thus, the card is rendered in the new position.

Reproduction of the problem

  1. Open the examples:
  1. Move a card to a different column.

Current behavior

Although the server returns an error the card is moved to the new column.

Expected/desired behavior

Moving the card should be prevented when there is an error.

Environment

  • Kendo UI version: 2024.3.1015
  • Browser: [all ]
Unplanned
Last Updated: 05 Nov 2024 18:22 by Andy F.
Created by: Andy F.
Comments: 0
Category: Chart
Type: Feature Request
1

Hi Team,

Currently, the Kendo UI Chart's legend labels and Drawing API offers font property, which includes style, size and family only, as described in CSS documentation.  Needs underline and strikethrough, which are considered "decorations" on the font in CSS, but seems like since these attributes exist already in editor, the code is around there somewhere.  Would like to see either font include support for those attributes or another "decorations" attribution (or maybe underline attribute and strikethrough attributes if that's easier for people to understand).  

Thank you!

Unplanned
Last Updated: 05 Nov 2024 14:33 by Peg

Bug report

PDF with a mixture of portrait and landscape pages shows incorrect page numbers in PDFViewer



Reproduction of the problem

Dojo: https://dojo.telerik.com/VtqGfXZA

Load a PDF with mixture of portrait and landscape pages.

Environment

jQuery: 3.4.1

Kendo UI version: 2024.3.1015
Browser: [all ]

                     
Unplanned
Last Updated: 01 Nov 2024 10:11 by ADMIN
Created by: Alexa
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
1

Hello,

My use case:

On grid dataBound, I am iterating over the table rows to perform some piece of custom logic on the row based off of the backing dataItem. Our production site is using version 2024.1.130, and everything is working great. Our next release we've updated to version 2024.2.514, and when we try adding a record, we get an error; when we try to access the dataItem of the last table-row - the dataItem is undefined. The grid.items() in my case is an array of size 21, and the internal _data array is size 20.

Repro conditions (as far as I can tell):

  • A Grid backed by a DataSource with server operations set to false
  • The DataSource should (?) have a filter configured
  • The size of the DataSource's data should (?) be larger than the pageSize

My workaround:

Simply perform a null check on the dataItem before doing the logic. We are calling DataSource.read in the DataSource.sync success callback anyway, so the grid will reload and the dataBound event will be handled afresh.

I've created the below dojo snippet to demonstrate a simplified version of my use case. I tested with 2024.1.130 and seems to work fine. I noticed the issue starting at version 2024.1.319.

https://dojo.telerik.com/INbSBrSg

 

A note: No, I don't actually use the internal _data property in my code, just for debugging purposes :)

Thanks!

-Alexa

1 2 3 4 5 6