Declined
Last Updated: 27 Jan 2022 11:35 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
We want the file upload control (chunk save method) to save the state while navigating between different pages sharing the same master page
Completed
Last Updated: 20 Jan 2022 12:26 by ADMIN
Created by: CHicksUS
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I'm trying to move my ASP.NET AJAX to Kendo MVC, but there is one way to customize the radioButton that doesn't translate to Kendo.  A picture/video would be more descriptive, but I'll just sent the html as that's my only option.  It toggles the multiple choices for the radio button, very intuitive for the user...  It would be nice to be able to do this on the Kendo side as well.
:
                    <telerik:GridTemplateColumn HeaderText="Fld1" HeaderStyle-Width="130px" UniqueName="tmpFld1" >
                        <ItemTemplate>
                            <telerik:RadButton ID="rbFld1" runat="server" ToggleType="CustomToggle" ButtonType="StandardButton" AutoPostBack="false" Checked="false" OnClientToggleStateChanged="toggleStateChanged" DataField="Fld1" >
                                <ToggleStates>
                                    <telerik:RadButtonToggleState Text="Not Reviewed" PrimaryIconCssClass="rbToggleCheckbox" Selected="false" Value="-1" />
                                    <telerik:RadButtonToggleState Text="No" PrimaryIconCssClass="rbToggleCheckbox" Selected="false" Value="0" />
                                    <telerik:RadButtonToggleState Text="Yes" PrimaryIconCssClass="rbToggleCheckboxChecked" CssClass="rbSkinnedButtonChecked" Value="1"/>
                                </ToggleStates>
                            </telerik:RadButton>
                        </ItemTemplate>
                        <EditItemTemplate>
                            <telerik:RadButton ID="rbFld2" runat="server" ToggleType="CustomToggle" ></telerik:RadButton>
                        </EditItemTemplate>
                    </telerik:GridTemplateColumn>
                </Columns>
            </MasterTableView>
:
    <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
        <script type="text/javascript" >
            var isToggle = false;
            function toggleStateChanged(sender, args) {
                var grid = $find("<%= RadGrid1.ClientID %>");
                var masterTableView = grid.get_masterTableView();
                var batchEditingManager = grid.get_batchEditingManager();
                var parentCell = $telerik.$(sender.get_element()).closest("td")[0];

                isToggle = true;
                // Update if initial value changed
                var isChecked = args.get_currentToggleState().get_value() === "-1";
                batchEditingManager.changeCellValue(parentCell, !isChecked);
            }

            function batchEditOpening(sender, args) {
                // this prevents opening of the cell if the user clicks outside the RadButton
                if (!isToggle && args.get_columnUniqueName() === "tmpFld1") {
                    args.set_cancel(true);
                }
                else {
                    isToggle = false;
                }
            }
        </script>
    </telerik:RadCodeBlock>
Completed
Last Updated: 24 Jul 2020 11:16 by ADMIN
Created by: Vadim
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
http://docs.telerik.com/kendo-ui/framework/templates/overview#template-syntax

Comment requires double slash //

        var result = template(data); /Pass the data to the compiled template
Completed
Last Updated: 20 Jan 2022 12:15 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
4
Returning only error messages from the validate method does not provide enough information to perform any meaningful processing of the errors - for instance, it is not possible to identify the field from a validation error without resorting to parsing the message
Unplanned
Last Updated: 12 Aug 2021 13:36 by ADMIN
Created by: Ryan
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
The linear gauge becomes cutoff at certain heights. If it's less than 50 pixels more and more features are cutoff. I'd like the linear gauge to be able to be 10 pixels without a cutoff.
Completed
Last Updated: 22 Jul 2021 10:17 by ADMIN
Created by: Gregory
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Rotator component.

We've used RadRotator component for asp.net ajax. Now we are doing this page on KendoUI jquery. I've not found how to change this particular component.
Completed
Last Updated: 06 Jul 2021 14:06 by ADMIN
Created by: René
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
We have isnull and isempty operators for string fields. But it is too much "technical" for standard users. It is hard to explain difference between null and empty. It is the same for most of user. It is just "no value". There is no difference in grid view. Youll see empty space. Empty string or null value, it desn't matter. 

There should be operator to filter nulls and empty strings with one filter item. Something like "With value" and "Without value". It implements merged operators "isnull or isempty".
Completed
Last Updated: 22 Jan 2020 08:42 by ADMIN
Created by: Larry
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Support has no doubt provided help to hundreds of people with thousands of issues but these problems and solutions are not available to search.  Ideally it would be possible to make the basic problem and solution available in a FAQ, cleansed of private information, so that it could be searched by people before contacting support. 

It would take some time to setup but it would make it easier to self-solve issues in many cases. 
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: 20 Jan 2022 12:01 by ADMIN
Develop a kendo form component and make edit field easy arrangement,just like bootstrap 12 grids system.the "popup" edit mode of kendo grid is not friendly when it has a lot of fields.The kendoForm component may be consist of form toolbar,form content and form footer.
Unplanned
Last Updated: 07 Feb 2020 21:44 by ADMIN
Created by: Mario
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
Hi Product team!

I would love to have similar heat map chart on Kendo, as swimlane guys have:

https://swimlane.github.io/ngx-charts/#/ngx-charts/heat-map
or
https://swimlane.github.io/ngx-charts/#/ngx-charts/calendar


Thank you! otherwise you are doing great job.
Declined
Last Updated: 20 Jan 2022 11:58 by ADMIN
Hi,

it would be nice if we can have a distinction between days when using a timelineWeek or timelineWorkWeek.

If you have a lot of ressources (with vertical grouping for example)  it could be difficult to see when a day is ending and the other is starting: see here.

It could be nice if we can have a border with a different css class (ie black color) that shows this behavior.

We did it on our side by using the slotTemplate but it's a kind of workaround that adds extra code/rendering time that could be done by the component itself on the first place.
Completed
Last Updated: 27 Apr 2023 11:30 by ADMIN
Created by: NerdBrick
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
TreeMap MVC Demo doesn't show how the colors ranges are achieved.
http://demos.telerik.com/aspnet-mvc/treemap/index

It would be help to show how the color rangers are specified. 
http://www.telerik.com/forums/mvc-treemap-sample-could-be-improved-with-the-addition-of-colors-range
Unplanned
Last Updated: 20 Jan 2022 11:48 by ADMIN
Created by: Yordan
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
3
Some ListBox widget ideas and proposals:

See screenshot: https://lh6.googleusercontent.com/TAVZGw63BSVVT6Nh8hXbiHerZ3L0krBzboONI07PpFByROeqKPiFgrlaPnTMtIUZ94D8xRog=w1920-h960

1. Add two search fields, so it is possible to search within the left and right panes individually.
2. Add headers above the search fields. They can be configured via templates. Also add options for selecting/deselecting all items in the corresponding pane. Checkbox’s middle state should also be considered.
3. Add option (API) for enabling/disabling ListBox widget as a whole widget (similar to DropDownList, ComboBox, etc.), not only item by item.
4. Add support for data virtualization (similar to DropDownList, ComboBox and AutoComplete).
5. Add API (public methods or fields) for retrieving the current status of the items in the ListBox. For example:
- a method/property which returns the count of currently selected items
- a method/property which returns the count of currently showed items (if searching, not all items will be visible)
- a method/property which returns the count of total items
This information can be shown in the headers via template, for example.
Unplanned
Last Updated: 20 Jan 2022 11:45 by ADMIN
Created by: Amitesh
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
4
The listview endless scrolling is a neat feature but it will be good if we could configure it to be in reverse. We are building chat system in our app and want to have the endless scrolling widget but need it to scroll in reverse.
Completed
Last Updated: 20 Jan 2022 11:38 by ADMIN
Created by: Kristian
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Add columns to timepicker to have multiple columns instead of a long list.
Like you have for the Telerik Ajax Timepicker 
Unplanned
Last Updated: 20 Sep 2021 15:30 by ADMIN
Created by: Eva
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
It would be great to be able to sort the legends of a chart, without changing stack order.
Declined
Last Updated: 22 Dec 2021 12:23 by ADMIN
Created by: Bradley
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
4
I am trying to find why some Kendo UI controls do not work, and do nothing at all.  No error, just flat do not work and don't give any clue about why not.  Was told about this extension for chrome?  great.  Installed and... ?  now what?  there is a Kendo icon in the upper right, ok let me click that.  it opens the "store" to get extensions of all sorts and types and says the kendo inspector tool IS installed.  ok, and..? if I look at page source?  nothing different.  How this tool is used is not obvious.  So put instructions of how to use it somewhere?
Unplanned
Last Updated: 06 Jul 2021 14:13 by ADMIN
Created by: Chris
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
15
Starting with Kendo-UI 2017, I've noticed that the row filter now shows two "x" buttons to clear the filter (one inside the text box and one to the right of the text box).  It's confusing having two of the exact same buttons next to each other, each doing a slightly different thing.  Please add option to remove either one of the two buttons without having to either do a dataBound or CSS trickery to hide them.
Declined
Last Updated: 22 Dec 2021 12:10 by ADMIN
Created by: Aravind
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
Hi, Is there any control for image edit in kendo mobile ui, i mean after capture call image edit tool to edit image with few basic features like crop, brightness,rotate.