Declined
Last Updated: 22 Jan 2020 07:39 by ADMIN
Created by: Imported User
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
2
The horizontal data selection for line charts works great...for the applications I need to build, I also need the same sort of selection vertically. Please consider implementing this soon...i know others have inquired about this as well.
Declined
Last Updated: 20 Nov 2014 20:44 by ADMIN
Created by: Imported User
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
TypeError: Cannot read property 'get' of null↵    at makeWidgetInfo (<anonymous>:94:43)↵    at <anonymous>:507:33

I get this error during reloading the page. I assume this is in your extension.
Unplanned
Last Updated: 22 Jul 2021 11:09 by ADMIN
Created by: Abey
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
Like we have datepicker and color picker, can we have a location picker control? The textbox will have lat and long values, which on clicking shows a map with a marker in a dropdown.

User can move the marker in the map and the lat long values will be correspondingly changed in the textbox.

An example is : http://logicify.github.io/jquery-locationpicker-plugin/#examples
Completed
Last Updated: 21 Jan 2020 14:55 by ADMIN
Created by: Travis
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
7
I know there are a number of requests for this, and I'm in agreement with all of them. I wanted to post a couple of specific examples in order to make it clear what would save me (a developer using Kendo for production code) time in implementing widgets within our application.

1. Provide information about all aspects of any given topic. For example, I recently tried to understand how sorting works for Grid. (see  http://www.telerik.com/forums/where-is-the-documentation-on-performing-case-insensitive-sorting-for-grid). It seems like it would take a pretty minimal effort to include information in the docs for grid column-header sorting (http://docs.telerik.com/kendo-ui/api/javascript/ui/grid#configuration-sortable) that describe how to turn off case-insensitive sorting, as well as explain that the grid option does not sort data on initial load (for that you need to sort on the dataSource). It required a fair amount of searching, and a couple of days to come to this understanding, which could have completely been avoided by adding a paragraph or two to the docs examples I just mentioned. For any configuration option, or feature documentation, make it complete and describe it entirely.

2. Utilize hyper-linking more effectively within the docs. A while back, I wanted to understand how to fully utilize the numericTextBox widget, and the docs mentioned 'format' for numerics. Unfortunately, I don't know what 'format' means in the context of Kendo widgets. Eventually, I found this forum post: http://www.telerik.com/forums/where-is-documentation-on-format
As I pointed out in my comment in that post, there's simply no reason to require your users to search for what 'format' means, when with minimal effort on your part, a link can be added and I can simply click to that documentation and get the answer I need.

There's a ton of individual examples that fall into one of those two categories, and if those were fixed, about 60% of the documentation issues I encounter would be resolved. I appreciate the chance to express this, and thanks for your consideration.
Declined
Last Updated: 10 Jun 2021 06:30 by ADMIN
Created by: Pierpaolo
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
28
I would like to implement something similar to what proposed here:
http://kendoui-feedback.telerik.com/forums/127393-telerik-kendo-ui-feedback/suggestions/6454228-separation-of-shapes-and-datasource-for-maps-in-da

Basically, it comes to binding shape properties to data: every time data changes, the filling of the shapes is changed accordingly.

Please, guys, this would be really good!
Declined
Last Updated: 20 Nov 2014 20:46 by ADMIN
Created by: Eric
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
The only thing holding us back from investing in Kendo UI is the lack of a styleable scrollbar.  You have the most beautiful controls on the market, but they are marred by the mere built-in scrollbars (as rendered by the browser).

When do you plan to address the scrollbar?

Thank you.
Duplicated
Last Updated: 04 Mar 2021 12:44 by ADMIN
Created by: Matt
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
19
Plotband functionality for RadHtmlCharts in UI for Asp.net AJAX definitely needs the ability to add tooltips and labels, otherwise the plotband is meaningless.
Completed
Last Updated: 21 Nov 2014 14:15 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
4
Kendo UI Gantt should have a resource view, presenting tasks by resource (so possibly, many tasks on the same line with automatic or manual arrangement) and possibility of multiselection of tasks
Completed
Last Updated: 20 Nov 2014 20:46 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Completed
Last Updated: 20 Nov 2014 20:45 by ADMIN
Created by: Alistair
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
When asking for support from Telerik any code examples use the framework specified in the support ticket.  For example, not to give examples in php if you are using MVC etc.
Declined
Last Updated: 29 Sep 2014 12:22 by ADMIN
Created by: Shurland
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
I need to create this ...

        ''' <summary>
        ''' Gets all categories
        ''' </summary>
        ''' <param name="categoryName">Category name</param>
        ''' <param name="pageIndex">Page index</param>
        ''' <param name="pageSize">Page size</param>
        ''' <param name="showHidden">A value indicating whether to show hidden records</param>
        ''' <returns>Categories</returns>
        Public Overridable Function GetCategories(Optional categoryName As String = "", Optional pageIndex As Integer = 0, Optional pageSize As Integer = Integer.MaxValue, Optional showHidden As Boolean = False) As IPagedList(Of Category) Implements ICategoryService.GetCategories
            Dim query = _categoryRepository.SelectOne
            If Not showHidden Then
                query = query.Where(Function(c) c.Published)
            End If
            If Not [String].IsNullOrWhiteSpace(categoryName) Then
                query = query.Where(Function(c) c.Name.Contains(categoryName))
            End If
            query = query.Where(Function(c) Not c.Deleted)
            query = query.OrderBy(Function(c) c.ParentCategoryId).ThenBy(Function(c) c.DisplayOrder)

            If Not showHidden Then
                'ACL (access control list)
                Dim allowedRolesIds = Ctx.CurrentUser.Roles.Where(Function(cr) cr.Active).[Select](Function(cr) cr.EntityId).ToList()
				query = From c In query Join acl In _aclRepository.SelectOne On _
				    New With { _
					 .c1 = c.EntityId, _
					 .c2 = "Category" _
				 Equals acl Select Var = acl
				} = New With { _
					 .c1 = acl.EntityId, _
					 .c2 = acl.EntityName _
				} Into c_acl From acl In c_acl.DefaultIfEmpty() Where Not c.SubjectToAcl OrElse allowedRolesIds.Contains(acl.RoleId) Select c

                'Store mapping
                Dim currentStoreId = _storeContext.CurrentStore.EntityId
				query = From c In query Join sm In _storeMappingRepository.SelectOne On _
				    New With { _
					 .c1 = c.EntityId, _
					 .c2 = "Category" _
				 Equals sm Select Var2 = sm
				} = New With { _
					 .c1 = sm.EntityId, _
					 .c2 = sm.EntityName _
				} Into c_sm From sm In c_sm.DefaultIfEmpty() Where Not c.LimitedToStores OrElse currentStoreId = sm.StoreId Select c

                'only distinct categories (group by ID)
				query = From cGroup In From c In query Group c By c.EntityId  Into cGroup.Key cGroup.FirstOrDefault()
                query = query.OrderBy(Function(c) c.ParentCategoryId).ThenBy(Function(c) c.DisplayOrder)
            End If

            Dim unsortedCategories = query.ToList()

            'sort categories
            Dim sortedCategories = unsortedCategories.SortCategoriesForTree()

            'paging
            Return New PagedList(Of Category)(sortedCategories, pageIndex, pageSize)
        End Function


How do I get in VB.net
Completed
Last Updated: 20 Nov 2014 20:46 by ADMIN
Created by: Andres
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
HI,
I still wonder why there is no text input autocomplete widget for Kendo Mobile.
I  like kendo MVVM to structure an APP. but i really need to use Autocomplete for my proyect (around 5 in different forms).

I guess i should go for ionic framework on AppBuilder (i really love the platform) if there is no way to implement autocomplete in a clear way.

Regards
Completed
Last Updated: 21 Nov 2014 14:08 by Pierpaolo
Created by: Marcelo
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
4
Dear Telerik,

What are you waiting for to implement a exporting resources to KENDO UI DataViz?
You are losing market share because Highcharts and FusionCharts already have this possibility.

Please, let us know when it will be avaiable.
Completed
Last Updated: 20 Nov 2014 21:02 by ADMIN
Created by: Pierpaolo
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
17
What I want to achieve is a dynamic Choropleth map of the World, whose data change according to a set of parameters.

It is my understanding that the maps widget in Kendo UI can display data in a Shape layer using GeoJSON files that contain both the definition of the shapes of the countries and the data itself (e.g. the population). From your GeoJSON demo it is clear how to change the colour of the countries using the Chroma.scale method.

But it also looks like I need the shape definitions to be duplicated over and over to show different data on the same map: 
let's say that I have about 400.000 possible combinations of the filters, it appears as if I'm going to need 400.000 GeoJSON files that contain both the shapes definitions and the the data and this means lots of network traffic.

My point is that, since the shapes of the countries do not change because the map is always the same, wouldn't it be useful to split the shape definition from the data itself?
In other words having a "shapeSource" property to which you link a GeoJSON that defines the shapes and the "dataSource" property bound to a JSON file that only has data: when the combination of filters changes I would only change the dataSource object.

My current solution is to have the "shapes definition only" file set in the dataSource property of the shape layer and then to use a Kendo.dataSource "data-only" object that I would use in the shapeCreated method to set the colours of the countries.

As a side note, the "data-only" Kendo.dataSource object will be shared between three widgets in the same page because the same data will be shown in a map, a chart and a grid.
Completed
Last Updated: 20 Nov 2014 21:01 by ADMIN
Created by: Pavel
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
2
Add rerender method to DropDownList, so that it could be dynamically refreshed after eintire select's HTML was changed.

i have a page with several select lists, and their options can be added/removed/disabled/enabled again based on a quite complex logic, which is easier to implement with DOM maniulation than with calling DataSource methods.

Would be nice to have such a possibility 
Unplanned
Last Updated: 12 Aug 2021 13:55 by ADMIN
Created by: Imported User
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
Be able to show an empty marker when the value is 0 for the sparkline like in this demo: http://dojo.telerik.com/@tsvetomir/ogiH/2

The demo use a hack to show the marker but it would good to have a real solution.
Completed
Last Updated: 16 Sep 2014 08:55 by ADMIN
Your Kendo UI demos are useful, however they lack a basic overview to orientate new comers as to the specifics.  More importantly I would find it useful, and it would be more thorough, to provide examples in both Razor and JavaScript Syntaxes.
Completed
Last Updated: 04 Dec 2020 04:28 by ChingPou
ADMIN
Created by: Bozhidar
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
15
Add an Year view in addition to the Day, Week and Month views.
Declined
Last Updated: 11 Mar 2021 14:16 by ADMIN
Currently, DataViz charts allow you to set a valueAxis's tick mark increments (increments of 100 would give you 0, 100, 200, 300, etc). I suggest a way to set a specific amount of ticks that your chart will always load, and the data will use divisions to fit the tick amount you set. Example: I want my chart to always display 5 ticks. I have two users, one who has a max number of 100 and the other has a max of 500. For User 1, the chart would set a max of 100 divided by the 5 ticks (so increments of 20). User 2 would get increments of 100 to fit the 5 ticks. 
Unplanned
Last Updated: 01 Oct 2021 14:09 by ADMIN
Created by: Mark
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
Please provide "retina" support for Kendo Map.  At this point its kinda "table stakes" for a mapping component - let alone one that you need to pay for.