Declined
Last Updated: 03 Mar 2020 14:38 by ADMIN
Created by: Kenneth
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
I love your controls except Validator. I have finally made my own, where I can write multiple functions to evaluate each input just like this in typeScript:
new Helpers.Validate([
                { name: 'postId', test: [(e) => { if (e == "") return "Chose a post."; }] },
                { name: 'creditor, test: [(e) => { if (e == "") return "Chose a creditor"; }, ] },
                { name: 'description', test: [
                    (e) => { if (e == "") return "Make a description"; },
                    (e) => { if (e.length < 15) return "Your description are to short "; },
                ]
                }, ]);
It is now a pleasure to make forms and perhaps you will consider to reevaluate the structure of your Validator that I have been struggling with workarounds on for so many hours the last two years. 
Kind regards from Kenneth
Completed
Last Updated: 19 Aug 2015 08:18 by ADMIN
Created by: Brian
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
17
When exporting data to pdf using the Kendo pdf toolbar please can all data be exported instead of only the data contained within the html viewable page (eg. when height is set using kendoGrid.height).
Unplanned
Last Updated: 12 Aug 2021 13:37 by ADMIN
Created by: Olga
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
6
Base units for chart include Months, Day, Year etc but there is no support for Quarter.  This causes gaps on the chart when displaying quarterly data.
Completed
Last Updated: 25 Nov 2014 17:17 by ADMIN
Created by: Jim
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
popover control that does not rely on mobile framework bits.
Declined
Last Updated: 25 Nov 2014 10:34 by ADMIN
I think the treeview is not as good as possible. It can not refresh one of the node alone.
Declined
Last Updated: 24 Nov 2014 15:58 by ADMIN
Created by: deepak
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I am facing a problem in the Kendo grid, I want to apply default filter criteria on the data source. To achieve this functionality, I am filling the filtered data on the first initialization of the data source and then adding the filter criteria on the JavaScript side by using the code.
       masterFilters.filters.push(eventTypeFilters);
        masterFilters.filters.push(roleTypeFilters);   
      dateviewGrid.dataSource.filter(masterFilters);   

But due to this, Http request of the AJAX call is being repeated on the code statement dateviewGrid.dataSource.filter(masterFilters);   

To resolve this problem, I have tried following options,

1) I have returned the zero records at the time of initialization of the data source, but it is giving another hit on the virtualization method.
2) But when I am returning at least one row at the time of initialization of the data source, 
It is not throwing extra hit on the virtualization method.
It is showing strange behaviour. Is there any bug in the Kendo grid?.
Please suggest a right approach to achieve this functionality,
If you want some more clarification on this problem, let me know.





 

    
Completed
Last Updated: 11 Aug 2015 14:36 by ADMIN
Created by: Sean
Comments: 8
Category: Kendo UI for jQuery
Type: Feature Request
3
I really like the new TreeList component of the recent release, however it would be great if you can add the ability to drag and drop a record and move it around the hierarchy.
Declined
Last Updated: 20 Nov 2014 16:23 by ADMIN
Created by: Stephen
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
In Chrome, you can type into the Editor's fontName tool to select a font. In IE, however, you can't type in a font, but rather can only select one using the dropdown. It would be good to be able to give the user a consistent experience across browsers. Ideally that would mean allowing them to type in a font in IE, but if that is not possible it would be good to be able to configure/turn off the ability to type in the control in Chrome and other browsers.
Declined
Last Updated: 20 Nov 2014 11:58 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
5
Inserting a new table in the editor in IE ignores the current cursor position and adds the table as the first element. If you add a new table, this will be added in the first cell of the first table.
Completed
Last Updated: 27 May 2021 17:15 by ADMIN
Release 2021.R2
Created by: Lee
Comments: 8
Category: Kendo UI for jQuery
Type: Feature Request
7
I believe a kanban board for managing tasks woudl be a great new control.  I see that you have something like this in TeamPulse already.  In the new control it would be nice to set the number of columns, custom template for an item (but providing a template that resembles sticky pad note would be cool) and allow drag/drop between the columns.  The D&D would need to be customizable so that the programmer could restrict which columns an item can move to & from.  This would be needed in case they did not want to allow the user to move an item to a previous state or may only allow to move forward 1 step.  The reason I put this under bootstrap is because the control should reposition columns below based on screen size.  So it may start as a 4 column board but because of the size of the window it is a 2x2.
Declined
Last Updated: 20 Nov 2014 10:43 by ADMIN
Created by: Stephen
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2
The .value() function on the Editor control strips out some elements from the Editor HTML. For instance, tables created in the Editor have a BR tag inside the table cells, but those BR tags are removed from the string returned by .value().

In order to display HTML exactly the same as it appears in the Editor, it would be useful to have an additional function, perhaps call it .rawValue(), that does not strip out these elements. For instance, with the BR example, if a row does not have any content the row will collapse without the BRs, so it would be nice to have an additional function that leaves them in.
Declined
Last Updated: 08 Mar 2017 14:02 by Telerik Admin
Created by: Desu
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
If Kendo tooltip configured closeToHide: true, then the kendo tooltip only hide when the close (x) icon clicked. The tooltip will still appear if user scroll mouse or click at another area on browser.


Currently kendo tooltip will be hide when user scroll mouse or click at another area on browser even if it was already configured autoHide: false
Completed
Last Updated: 20 Nov 2014 20:58 by ADMIN
Created by: Vincent
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Do not auto hide the notification when notification is hovered.
Declined
Last Updated: 14 Oct 2021 11:04 by ADMIN
the *.map files in the js directory are excluded by Eclipse.  I have yet to figure out why this is.  At any rate - they are not yet being returned to the browser
Completed
Last Updated: 20 Nov 2014 20:59 by ADMIN
Created by: Leslie
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Taking the example grid in index.html and adapting it so it uses a local data source, I get "Nan - Nan of 3 items" for this source:

 var movies = [
						{ title: "Star Wars: A New Hope", year: 1977 },
						{ title: "Star Wars: The Empire Strikes Back", year: 1980 },
						{ title: "Star Wars: Return of the Jedi", year: 1983 }
					];
					
					var localDataSource = new kendo.data.DataSource({ data: movies });

				
                    $("#grid").kendoGrid({
                        dataSource: localDataSource,
Declined
Last Updated: 24 Aug 2017 13:06 by Telerik Admin
I am trying to build  a dashboard  using telerik kendo with at least 3 template and a drop down panel from where i need to drag and drop  to those template ...
am using   
<div kendo-sortable class="col-sm-4 placeholder" id="side"
                        k-connect-with="'#main'"
                        k-placeholder="placeholder"
                        k-hint="hint"
                        k-filter="'.widget'"
                        k-on-change="dropped(kendoEvent)" style="width: 180px">...</div>


AND


   <div kendo-sortable class="col-sm-8 placeholder" id="main"
                    k-connect-with="'#side'"
                    k-placeholder="placeholder"
                    k-hint="hint"
                    k-filter="'.widget'"
                    k-on-change="dropped(kendoEvent)">....</Div> 

but by using this i can create only one template how to create rest.
Completed
Last Updated: 25 Mar 2015 11:09 by ADMIN
Created by: S1000RR
Comments: 12
Category: Kendo UI for jQuery
Type: Feature Request
38
/*** Kendo UI Beta v2014.3.1029 ***/
We've tested the brand new TreeList today.
The new TreeList needs...
> checkboxes
> columns should be resizeable
> column reordering
> frozen columns
events
> collapsed
> expanded
Take a look at the "famous" Grid / TreeList...

Regards
Stefan Wolf
Completed
Last Updated: 20 Nov 2014 20:52 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Support for the angular 1.3 version
Declined
Last Updated: 14 Oct 2021 11:10 by ADMIN
Created by: Andrew
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
The mobile application exposes an 'init' event when the application has initialised. This would be useful on all UI widgets, especially in circumstances when MVVM is not being used, for example to check whether other widgets are also initialised and perform actions accordingly.
Declined
Last Updated: 14 Oct 2021 11:10 by ADMIN
When setting the 'useNativeScrolling' to true in 'app.js', the rendering of a drawer is effected.  Additionally, trying to scroll on the drawer actually scrolls the view (which will be partially off the screen).

Some views will not need native scrolling so it would be beneficial to have the option to choose which views use native scrolling and which do not.

I am aware there is the data-use-native-scrolling attribute but this seems to have the same problem as 'useNavtiveScrolling' in 'app.js'.