Unplanned
Last Updated: 16 Apr 2024 04:35 by Fajleabbas
Created by: Fajleabbas
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
Currently, I am using the DateRangePicker. However, it would be beneficial if the From and To Date portions can be also filtered by a time criteria as well.
Unplanned
Last Updated: 15 Apr 2024 11:49 by Vakho
Created by: Vakho
Comments: 0
Category: ImageEditor
Type: Feature Request
0

I have an imageEditor component on my page, and am resizing the images to calculated width & height. I am using the ResizeImageEditorCommand command:

imageEditor.executeCommand({ command: "ResizeImageEditorCommand", options: { width: Math.round(newWidth), height: Math.round(newHeight), aspectRatio: true } });

After resizing, some of the images seem 'flaky'. The is not reproducible with every image but can be observed with PNG and JPG as well. I have provided sample images in ticket ID: 1647561.

I would like the images in the ImageEditor to have the same quality after resizing. 

Unplanned
Last Updated: 11 Apr 2024 07:36 by Frieder
Created by: Frieder
Comments: 0
Category: Scheduler
Type: Feature Request
2
Expose the ability to split the Scheduler content into standalone pages.
Unplanned
Last Updated: 17 Apr 2024 08:46 by ADMIN
Created by: sitefinitysteve
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1

The Kendo Spreadsheet is bound to a Kendo datasource, the datasource defines a schema, but when the JSON comes back the spreadsheet just ignores the schema properties and dumps the entire thing into the sheet.

It would be nice to not have to code up some additional workaround after already having defined the schema I want.

(No control over the JSON structure from the server)

Unplanned
Last Updated: 08 Apr 2024 08:01 by Christine
Created by: Christine
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1

Expose the ability to alter default icon content. Similar to how it can done in the Kendo UI for Angular suite - https://www.telerik.com/kendo-angular-ui/components/icons/icon-settings/#toc-svg-icons

Unplanned
Last Updated: 02 Apr 2024 19:59 by Licinio Renato
Created by: Licinio Renato
Comments: 0
Category: Grid
Type: Feature Request
1

Hi Team,

I would like to request that the Kendo UI Grid includes an event for when an export is completed.  This way, I can control and alert the user when a document has been successfully exported.  

Thank you!

Unplanned
Last Updated: 02 Apr 2024 11:59 by Guy

In Excel, there is an option for Sparkline to set a marker for the highest point, lowest point, first point, last point, and negative point. 

I know that it is possible to customize the appearance of the markers using the markers.visual. However, I would like to have the option as a built-in configuration to ensure better performance.

 

Unplanned
Last Updated: 08 Apr 2024 14:17 by ADMIN
Created by: Guy
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
0
  • Currently, when the legend has a lot of items or the labels are too long, it will create multiple lines and takes spaces. We would like to keep the legend in one line as fixed and add a scrollbar within the legend.
  • This will make the chart more clean and the legend wont overtake the space of the chart and it will remain the same size no matter how many items it contains.
Unplanned
Last Updated: 29 Mar 2024 09:22 by Satish
Created by: Satish
Comments: 0
Category: PDFViewer
Type: Feature Request
1
Expose the ability to show interactive inputs similarly to the PDF.js library.
Unplanned
Last Updated: 02 Apr 2024 07:44 by ADMIN
Created by: Sarah
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2

I would like be able to have a vertical scrollbar on a kendo grid without enabling horizontal scrolling.

Currently when the scrollable feature is set to true, scrolling is enabled for both horizontal and vertical.

I would like to see something like:

scrollable:{ vertical : true, horizontal: false }

Can that be done?

Thank you!

Unplanned
Last Updated: 26 Mar 2024 09:13 by Akesh Gupta

Currently, there is no way to reuse a single method of a model and execute different logic based on additional data related to the specific element. 

Before the CSP improvements in R1 2023, an unsupported workaround was configuring the method along with the arguments that were evaluated and accessible from the method itself.

Example of the unsupported approach: 

    <div id="test">
      <p  data-bind="text: spanLabel('test')" ></p>
      <p  data-bind="text: spanLabel('another test')"></p>
    </div>

    <script>
      var viewModel = kendo.observable({
        spanLabel: function(args){
          return "spanLabel executed, args: "+ args
        },
      });
      
      kendo.bind($("#test"), viewModel);
    </script>

 

Improvement suggestion

Allow the model methods to have access to the reference element. That would enable the internal method logic to get additional data based on the element and achieve the same functionality as the unsupported workaround approach. 

Example of the desired functionality:

    <div id="test">
      <p data-bind="text: spanLabel" data-span-label="test"></p>
      <p data-bind="text: spanLabel" data-span-label="another test"></p>
    </div>

    <script>
      var viewModel = kendo.observable({
        spanLabel: function(args) {
          let element = args.referenceElement; 
          let spanLabelArgs = element.attr("data-span-label")
          return "spanLabel executed, args: " + spanLabelArgs
        },
      });
      
      kendo.bind($("#test"), viewModel);
    </script>

Unplanned
Last Updated: 25 Mar 2024 13:35 by Ranjini
Created by: Ranjini
Comments: 0
Category: Upload
Type: Feature Request
1
Expose the ability to set the ChunkSize in gigabytes. For example through a string.
Unplanned
Last Updated: 29 Mar 2024 13:36 by ADMIN

Kendo UI ImageEditor, jQuery version. Add Draw simple shapes and text over image like you have in the WPF image editor component.

I saw a slightly similar request but not exactly what I would like.

Thanks, Kurt Miller

Unplanned
Last Updated: 15 Mar 2024 07:26 by Makarand
Created by: Makarand
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
Add support for grouping Korean letters as one word within the Spreadsheet.
Unplanned
Last Updated: 06 Mar 2024 07:53 by Douglas
Created by: Douglas
Comments: 0
Category: TaskBoard
Type: Feature Request
1
Currently, it is not possible to group each of the card records using the existing DataSource API options. It would be beneficial if the widget exposes built-in grouping capabilities.
Unplanned
Last Updated: 01 Mar 2024 09:10 by Bryan Patrick
Created by: Bryan Patrick
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
Similar to the Grid, it would be beneficial to add a sizing option that can be set through the existing API configuration of the component.
Unplanned
Last Updated: 29 Feb 2024 14:16 by PT

Bug report

`DropDownListSelectEvent.dataItem` is undefined when using keyboard to select the optionLabel, but is defined when using the mouse

Reproduction of the problem

Steps

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

Make a selection (e.g. "Apples").
Select the optionLabel item.

Expected

The value of DropDownListSelectEvent.dataItem is the same whether the selection is made via keyboard or mouse (assumedly).
The value of DropDownListSelectEvent.dataItem is clearly specified in the API docs when selecting the optionLabel.

Actual
The value of DropDownListSelectEvent.dataItem is "Select an option…" when selecting with the mouse.
The value of DropDownListSelectEvent.dataItem is undefined when selecting with the keyboard.

Environment
Kendo UI version: 2024.1.130
Browser: [all]

Unplanned
Last Updated: 05 Mar 2024 10:34 by ADMIN
Created by: Christopher
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
0

There is currently no built in way for someone to change the style of line that connects people in the Org Chart control. Currently, all lines must be solid and by default are black. There is no easy, built-in, way to change the line style from solid to another style such as dashed, dotted, etc.

Therefore in order to support more complex org charts, as a developer, I would like to be able to specify the line style, weight, and color of the lines that connect individual positions in the org chart control so that more complex relationships can be denoted to users. Examples of complex relationships between positions would be positions that are not full time, positions that are provided through a third-party vendor, positions that have multiple managers, and people that are moving or are being phased out.

For additional support, it would also be helpful to enable / add a legend to the control to label what a color represents as well as what a line style represents.

 

 

Unplanned
Last Updated: 27 Feb 2024 14:59 by David
Created by: David
Comments: 1
Category: Filter
Type: Feature Request
1
Expose built-in options for altering the appearance of the Apply Button. Such as - icons, content and sizing options.
Unplanned
Last Updated: 23 Feb 2024 22:02 by Roy
Created by: Roy
Comments: 0
Category: Diagram
Type: Feature Request
1

Hi Team,

I would like to request adding Swimlane Orientation for the Kendo UI Diagram. 

Thank you!

1 2 3 4 5 6