Completed
Last Updated: 20 Nov 2014 18:08 by ADMIN
ADMIN
Created by: Todd
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
3
In addition to Line and Bar chart types, it would be nice to have support for the Pie chart type.
Declined
Last Updated: 20 Nov 2014 18:08 by ADMIN
Created by: Ben Hayat
Comments: 6
Category: Kendo UI for jQuery
Type: Feature Request
2
I would like to request, for the following controls: Rich Editor, Data Filter, Masked Input for building business apps.

[Edited to remove tools already included in beta.]
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.
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.
Completed
Last Updated: 22 Oct 2014 14:04 by Nathan
Created by: Nathan
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
Mobile Date & Time Pickers would allow much easier use for inputting dates and times into a mobile ui.  The web date & time pickers use a drop down that is not the best solution for mobile use.
Completed
Last Updated: 15 Oct 2014 08:39 by ADMIN
Created by: Kushal
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
This is quite important especially in finance where we would want to overlay graphs with other graphs data for analysis.

Also would be good to enhance the controls to have more functionality such as min\max lines 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: 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: 11 Sep 2014 09:44 by ADMIN
Created by: Jay Stevens
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
4
The Kendo UI Forums have limited usefulness, do not seem to be consistently monitored for new questions, there isn't a useful tagging or categorization structure.  The search engine does a poor job of identifying similar questions / answers.  There is no easy way to link Questions together and/or mark duplicates.  The Forum site goes down from time to time, given the extremely limited documentation, this leaves developers without reliable information readily available.

All of these shortcomings (which are more than adequately addressed by Stack Overflow) result in a fractured support and documentation infrastructure for Kendo UI.  

Migrating all unpaid support away from the forums to Stackoverflow will dramatically improve the experience.
Completed
Last Updated: 21 Aug 2014 09:14 by ADMIN
If I only have 3 items in a grid then it should only be as tall as it needs to be to show them, but if I have 100 items then I want it to be tall enough for 10 items or for say 300 pixels and turn on scrolling. If it's shorter than the threshold I don't want the scrollbar shown at all.
Completed
Last Updated: 06 Aug 2014 09:34 by ADMIN
Created by: Amitesh
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
We need the ability to get the next occurrence of a recurring event given a start date. This has nothing to do with the scheduler widget but a function that can take a recurring event and start date and return the next occurrence instance (not all the occurrence). We need this to tell the user when they have their next appointment.
Completed
Last Updated: 17 Jul 2014 15:23 by ADMIN
Created by: Justin
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
Currently in data bound mode of the ScrollView doesn't allow filtering of the datasource.
Completed
Last Updated: 17 Jul 2014 15:18 by ADMIN
Created by: Udo
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
I'd like to suggest the support of animated scrolling for the scrollTo() method of Kendo UI mobile scroller
Completed
Last Updated: 17 Jul 2014 15:17 by ADMIN
Created by: Missing User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Right now, the scrollbars of the scrollwrapper widget only show up if the user actually starts scrolling.

However, there are circumstances where the user might not be aware that the content is actually scrollable.

Two examples:

The content of the scrollwrapper contains a lot of whitespace/background such that the user sees whitespace at the end of the scrollwrapper box and is not aware of overflowing content.

The scrollwrapper does not contain continuous text but a list and the visible content ends right after a list item -- the user might not be aware that there are subsequent list items hidden in the overflow.

Thus I suggest to add a configuration option to the scrollwrapper widget which makes both/the horizontal/the vertical scrollbar permanently visible to inform the user about overflowing content.
Declined
Last Updated: 17 Jul 2014 15:17 by ADMIN
Created by: Juan
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Lets say I invoke a view like /view.html?id=123

On the "show" event of "view" I pull the data from the server based on "id", and some loading and layout stuff.

On this "view" I have a button that navigates to another view that is a "picklist", or "settings" or "help". Upon going to this second view and then going back, then the "show" event of "view" is fired again, pulling data from server and re-running all that was inside the show event again.

On some situations it is important to conserve the visual state of the view after coming back to it. For example, if user is filling a form.

The same problem is faced when you want to implement a wizard (step by step) form: pressing back will wipe out all data and reload, loosing previous screen state.

There must be a way to prevent this. I have tried the e.view._back flag of the show(e) event, but it is not always reliable. By having such flag, all the scenarios mentioned can be handled by code, by knowing when it's a fresh-show or a back-show.
Completed
Last Updated: 17 Jul 2014 15:15 by ADMIN
I would like to see a robust data-grid for tablets.  Bring over as many features from your desktop grid into the mobile world.
Completed
Last Updated: 17 Jul 2014 15:13 by ADMIN
Created by: Imported User
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
3
Element scrolling on Android 2 devices is jerky. As a workaround it would be good to have ability revert to native page scrolling. 
I've successfully implement this with css, but this only works on non-touch devices. Touch devices "highjack" the touch events of body.
Declined
Last Updated: 17 Jul 2014 15:08 by ADMIN
Created by: Eric
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
4
If we have a flow of 3 steps. A1 -> A2 -> A3 -> B1 I want to be able to hit back and go to A1. This is currently not allowed and we must construct flows based upon views that have to be linear forward and back. I want to be linear forward but go back differently.
Completed
Last Updated: 17 Jul 2014 15:05 by ADMIN
This will allow developers to customize the speeds of the views for any particular need and also to make it look even more native between devices.