Unplanned
Last Updated: 25 Apr 2024 20:59 by Jikku
Created by: Jikku
Comments: 0
Category: TileLayout
Type: Feature Request
1

Hi Team,

I would like to request a way to make it easier to change the state of the tiles(Adding and Removing) using outside components such as the Kendo UI CheckBoxGroup.  

Thanks!

Pending Review
Last Updated: 25 Apr 2024 12:13 by Lee
Created by: Lee
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
0
Please create a new widget or modify the existing dropdownlist component to allow the user to make more than one selection. The existing multiselect component is not sufficient in that it cannot be modified to look and operate like the dropdown list. This confuses users and makes the controls in a form feel like they came from two different libraries. The major difference is the placement and appearance of the search. In the dropdown list, the search is inside of the list and always 100% width. In the multiselect the search is invisible and inside the selected values box. Our clients are requesting a new tool where the search in the multiselect looks and operates like the search in the dropdownlist and have gone as far as to ask us to ditch Kendo UI for another library.
Unplanned
Last Updated: 25 Apr 2024 13:12 by Ross
Created by: Bradley
Comments: 1
Category: Form
Type: Feature Request
2
Add a Form method to reset the validation on the fields, similar to the Validator reset method.
Unplanned
Last Updated: 25 Apr 2024 11:17 by ADMIN
Created by: Lee
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2

Our clients are requesting that the search in the multiselect look like the search in the dropdownlist. They want it to be in the list that opens rather than in the value box and want a consistent operation and look. This should be an option that can be set when initializing the multi-select. I attempted this using the forum post below but it is quite buggy and requires a lot of modifications. 

https://www.telerik.com/forums/make-filter-in-multiselect-look-like-filter-in-dropdownlist

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

Pending Review
Last Updated: 19 Mar 2024 13:10 by Brendon
Created by: Brendon
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1

I have a requirement to show parent rows below the child rows, such that when a parent row is expanded the children show up above the parent. Currently from the options, it seems that parent row can only be expanded to show children below the parent. This is not supported by the grid or treelist, and Kendo support has requested this be logged as a feature.

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.
1 2 3 4 5 6