Completed
Last Updated: 22 May 2020 15:07 by ADMIN
Created by: cortex
Comments: 9
Category: Kendo UI for jQuery
Type: Bug Report
0

Hi,

I'm using the Grid version 2019.3.1023 but changelog for newer version doesn't seem to show this has been fixed.

 

Using Html.Kendo().Grid().Columns(columns => colums.ForeignKey(x => x.ForeignCol, data, "value", "label"));

 

If data contains html, it will not be escaped when the javascript for the kendoGrid component is rendered, and thus is exposed to XSS.

This should be either fixed or documentation and samples must tell explicitly we need to html encoded the data, as this is not the case for the model itself.

 

 

 

 

Declined
Last Updated: 28 May 2021 11:57 by ADMIN
Created by: Fuad
Comments: 2
Category: Kendo UI for jQuery
Type: Bug Report
0

Hello,

The function kendo.support.mobileOS is returning false when on Chrome browser using  Huawei mobile, model MRD-LX1F.

If using Firefox on same mobile, it returns true.

Android version is 9

EMUI versio 9.1.0

my contact : fuadk@gordano.com

or fuadks@gmail.com

Regards

Fuad

Unplanned
Last Updated: 29 Apr 2020 09:40 by ADMIN
Created by: Katalina
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
0

As a developer, I want to be able to add paragraphs with empty content and not have it stripped, so that I can add custom functionality, like icons.

I want to be able to control if the paragraph's content should be stripped or have the editor allow empty elements when they have classes.

 

Currently, if I add markup similar to a font awesome icon or some custom icon in a paragraph, there is a function, _fillEmptyElements, that strips the content of the paragraph:

Input:

<p> <i class="fa fa-check" style="color: green;"></i> </p>

or

<p>&nbsp;<span class="customicon icon-iconname"></span>&nbsp;</p>

 

On save, the paragraph's content is stripped to:

<p>&nbsp;</p>

 

As a workaround, I can add dummy text in the paragraph:

https://dojo.telerik.com/oHIpusIL

Unplanned
Last Updated: 29 May 2020 14:26 by ADMIN
Created by: Maciej
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

There are situations where I want to know more about what triggered certain event in kendo (for example if ctrl button was down when clicking) but library won't let me because original browser events don't make it all the way up. Examples:

* select/change event for tree view

* change event for grid

I wish there was a field originalEvent on the argument so I can look at it.


element.kendoTreeView(
{
    select: e =>
    {
        let isCtrlDown = e.originalEvent.ctrlKey;
    }
 });

Declined
Last Updated: 17 Jun 2020 08:37 by ADMIN
Created by: Finvent
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0
In my page I have a grid and also a chartjs. I would like to export chartjs in excel as well not only grid.
Unplanned
Last Updated: 19 Jun 2020 12:43 by ADMIN
Created by: ecobite
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

HY, 

 i need a or advanced and user friendly tablet edit and format (for example: cell context menu for formatting, multi cell select for formatting and merge, and so on )

( i want replace all external editor in my application for the Kendo Editor, but i need more user friendly table and image format/edit functionality, some like the other WYSIWYG  editor (ChkEditor, TinyMCE,...) )

 

 Nice feature will we the document format with text flow ( like google docs), so i can do a document in a A4 page size  and flow text over the pages.

 

 

Thanks

Declined
Last Updated: 22 Jun 2020 15:57 by ADMIN

Hi, 

Every widget that supports control of visibility configuration uses "VISIBLE", but when using MVVM to control HTML objects it is: data-bind = "invisible: someThing" .  This IMHO is inconsistent, counterintuitive, and adds complication.  If you are controlling the visibility of a mix of Kendo and HTML objects on the same bit of data, you need to duplicate it with a negated version or resort needlessly to templating logic.  Maybe I'm missing something but this seems like a no-brainer.

Thanks,

Will Dougherty 

Completed
Last Updated: 03 Feb 2022 08:31 by ADMIN
Release 2022.R1.SP.next
Created by: iConect Developer - Mike
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Bug report

Reported for iPad Air 2, tested and reproduced on iPad Pro 2020 12.9' iOS 13.5.1.

Reproduction of the problem

Dojo example.

  1. The result of kendo.support.mobileOS is displayed with an alert.

Current behavior

mobileOS returns false.

Expected/desired behavior

mobileOS returns an object with information about the mobile OS, device and browser.

Environment

  • Kendo UI version: 2020.2.617
  • jQuery version: x.y
  • Browser: [ iOS XX Safari | iOS Firefox ]
Completed
Last Updated: 26 Jan 2021 09:40 by ADMIN
Created by: Mykhailo
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
0
NumericTextBox is setted propery decimals="0" that means there shouldn't be decimals and it works well when a value is not minus. 
But when a value is minus it allows decimals.
Unplanned
Last Updated: 12 Aug 2020 11:16 by ADMIN

Hi.

I make kendo grid which has pageable: {pageSizes: true, pageSize: 10} options.

After $("#grid").data("kendoGrid").setDataSource(dataSource), pageSize is changed NaN.

 

even setOptions() is not working.

$("#grid").data("kendoGrid").setOptions({
				pageable: {
					pageSizes: true,
					pageSize: 10,
				}
		    });

 

This is sample code.


<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>Kendo UI Snippet</title>

    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.2.617/styles/kendo.default-v2.min.css"/>

    <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
    <script src="https://kendo.cdn.telerik.com/2020.2.617/js/kendo.all.min.js"></script>
</head>
<body>
  
<div id="grid"></div>
<script>
  let dataSource =new kendo.data.DataSource({data:[{ productName: "Tea", category: "Beverages" }]});
$("#grid").kendoGrid({
  columns: [
    { field: "productName" },
    { field: "category" }
  ],
  dataSource: [
    { productName: "Tea", category: "Beverages" },
    { productName: "Coffee", category: "Beverages" },
    { productName: "Ham", category: "Food" },
    { productName: "Bread", category: "Food" }
   
  ],
  pageable: {
					pageSizes: true,
					pageSize: 10,
				},
});
  
$("#grid").data("kendoGrid").setDataSource(dataSource);
$("#grid").data("kendoGrid").setOptions({
				pageable: {
					pageSizes: true,
					pageSize: 10,
				}
		    });
</script>
</body>
</html>

Completed
Last Updated: 09 Oct 2020 12:15 by ADMIN
Release 2020.R3.SP.next
Created by: Drew
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Bug report

There is no definition of type in the WorkbookSheetRow definition (line 21897 in kendo.all.d.ts):

interface WorkbookSheetRow {
	cells?: WorkbookSheetRowCell[];
	index?: number;
	height?: number;
}

The values of the sheets.rows.type: https://docs.telerik.com/kendo-ui/api/javascript/ooxml/workbook/configuration/sheets.rows.type

Reproduction of the problem

Current behavior

Expected/desired behavior

Environment

  • Kendo UI version: 2020.3.915
  • jQuery version: x.y
  • Browser: [all]
Unplanned
Last Updated: 31 Jan 2024 14:06 by ADMIN
Created by: Ari
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Bug report

The kendo.culture.nb-NO.min.js file contains some unwanted characters: "Â".

Reproduction of the problem

See Ticket ID: 1486493 for more details.

The unminified file looks correctly: https://github.com/telerik/kendo-ui-core/blob/master/src/cultures/kendo.culture.nb-NO.js

Current behavior

Expected/desired behavior

Environment

  • Kendo UI version: 2020.3.915
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 29 Oct 2020 15:26 by ADMIN
Release 2020.R3.SP.next
Created by: Eric
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Prerequisites: Chrome browser, Outlook 2016 or 365

Steps to Replicate

From Outlook, click to hold down on an email. Drag and drop it to the upload area.

Expected Behavior: The e-mail is copied to the upload widget and uploaded.

Actual Behavior: E-mail is deleted from the folder it existed in and moved to "Deleted Items". If it was copied from "Deleted Items", it is permanently deleted.

Notes:

This does not work in Firefox or Safari--it appears a new version of Chrome enabled the "drag-and-drop from emails" feature. Drag and drop from the other two browsers simply does nothing.

There is already technology to provide a "copy" option for drag-and-drop implementations from emails. (https://answers.microsoft.com/en-us/msoffice/forum/all/drag-and-drop-works-however-deletes-email-can-we/865f60c3-7980-4465-8a19-4d60b0ae5aba?page=2)

Telerik has stated that they "do not support" this feature (source: https://www.telerik.com/forums/drag-and-drop-outlook-email) I would like this feature to be supported.

Unplanned
Last Updated: 15 Oct 2020 07:30 by ADMIN

1. Create a table

2. Add a caption

3. Select caption and format it to be a heading (h1, h2..)

4. Note that the layout becomes distorted.

 

It is expected that the heading element will be wrapped in the caption element, which is valid html5 according to w3 validator

 

http://validator.w3.org/#validate_by_input

 


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <table style="width:1177px;"><caption><h2>Text</h2></caption><tbody><tr style="height:21px;"><td style="width:382.812px;">a</td>
        <td style="width:382.812px;">a</td>
        <td style="width:381.812px;">a</td>
        </tr>
        <tr style="height:21px;"><td style="width:382.812px;">a</td>
        <td style="width:382.812px;">a</td>
        <td style="width:381.812px;">a</td>
        </tr>
        </tbody></table>
        <p>&nbsp;</p>
</body>
</html>

 

This behaviour has already been discussed with Yanko Dzhemerenov internally.  

Unplanned
Last Updated: 22 Oct 2020 07:08 by ADMIN
https://github.com/telerik/kendo-ui-core/issues/6087
Completed
Last Updated: 27 Oct 2020 11:07 by ADMIN
Release 2020.R3.SP.next
Created by: EntSoftSol
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

There is an issue with LESS Fiori Theme on the Last release of Kendo UI Scheduler. The issue can be observed in the demos:

Completed
Last Updated: 05 Nov 2020 12:32 by ADMIN
Release 2020.R3.SP.next

I'm trying to use the workDays option to only show Saturday and Sunday in the workWeek view (this is for a weekend working rota -- I don't want to show Mon - Fri):

{ type: "workWeek", selected: true, workDays: [6,0] },

However, only Saturday is being displayed.

Note, I'm using a custom culture that sets the first day of the week to Saturday, but the same problem occurs when using the standard en-GB culture.

Completed
Last Updated: 06 Jan 2023 15:37 by ADMIN
Release R1.2023-Increment.3(18.Jan.2023)

Bug report

Horizontal and vertical lines appear in the merged Spreadsheet cells when they are disabled.

** Possible workaround could be to apply the following CSS:

      #spreadsheet > div.k-spreadsheet-view > div.k-spreadsheet-fixed-container > div.k-spreadsheet-pane > div.k-spreadsheet-data > div.k-state-disabled {
        opacity: 1;
        color: #a3a3a3;
      }

Reproduction of the problem

  1. Open this Dojo and run it
  2. There are is a horizontal line above the cell with text "Merged DISABLED cell and there is a horizontal line above". There is a vertical line inside the cell with text "Two cells are merged horizontally and the result cell is disabled. There is a vertical line that should not appear"

Current behavior

When Spreadsheet cells are merged and the result cell is disabled, there are horizontal or vertical lines that appear inside the merged cell.
image

Expected/desired behavior

No lines should appear inside the merged cells, no matter if they are enabled or disabled.

Environment

  • Kendo UI version: 2020.3.1021
  • jQuery version: x.y
  • Browser: [all]
Declined
Last Updated: 05 Nov 2020 16:37 by ADMIN

Hi Keno Team,

I am getting this CORS error when trying to open a pdf file from an Azure blob using kendoPDFViewer. (Error: ' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. )

I have an SSL token included to pdf/image URLs and work fine for image viewing with kendoImageEditor.

 

My code is simple as follows

                            this.viewer = $("#pdfViewer").kendoPDFViewer({

                                pdfjsProcessing: {

                                    file: pdfUrl,

                               },

                                width: "100%",

                            }).data("kendoPDFViewer");

Could you please let me know how to fix  this issue

Duplicated
Last Updated: 24 Jun 2022 09:38 by Kirby

Hi Kendo Team,

I am getting this error when trying to open a pdf from Azure Blob using kendoPDFViewer. (Error: has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.)

I use token-based authentication by SSL token included to the image/pdf URLs and It works fine for image viewing using kendoImageEditor.

My code is simple as follows:

                            this.viewer = $("#pdfViewer").kendoPDFViewer({

                                pdfjsProcessing: {

                                    file: pdfUrl,

                                },

                                width: "100%",

                            }).data("kendoPDFViewer");

 

Could you please let me know how to fix this issue?

Or do I need to use dplProcessing with an Authorization token