Declined
Last Updated: 27 Feb 2015 21:31 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Completed
Last Updated: 27 Feb 2015 21:31 by ADMIN
Created by: King Wilder
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
It would be nice if there was an additional dropdown in the Editor that was populated with CSS classes in my .css file.  It would allow users of the application to style articles and other text consistently by simply selecting predefined styles for that layout.  (Hopefully this isn't a duplicate)
Declined
Last Updated: 27 Feb 2015 21:31 by ADMIN
Created by: Oscar
Comments: 10
Category: Kendo UI for jQuery
Type: Feature Request
34
Would be nice with some sort of table support in the rich text editor. Normally we need a very stripped down RTE since it only represents a part of a page (a block), so the bells and whistles of tinymce are a bit overkill.

However it seems that even though it might be difficult to use in an RTE due to complex UI, we often get questions regarding how to insert a table into a text. Not a complex table, but just a simple table with maybe a class, some th and td's.

It would be really nice if we could stop integrating tinymce and just stick to one library, with a little more beefier RTE in Kendo UI. :)
Declined
Last Updated: 27 Feb 2015 21:31 by ADMIN
Created by: Steven
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
I find myself having to define fields and columns multiple times for use in grids and data sources.   It would be nice to be able to use a single structure that would work for both.   The visible setting would control if the field is displayed in the grid or not.   

For example:

    _myColumns = [
        { field: "Position.Name", title: "Position", width: 20, type: "string", editable: true, visible: false },
        { field: "Headcount.value", title: "Headcount", width: 15, type: "string", editable: true  },
        { field: "FTE.value", title: "FTE", width: 15, type: "string", editable: true  },
        { field: "EmployeeName.value", title: "EmployeeName", width: 50, type: "string", editable: true  },
        { field: "JobCode.value", title: "JobCode", width: 20, type: "string", editable: true  },
        { field: "JobTitle.value", title: "JobTitle", width: 100, type: "string", editable: true  }
    ]

then, this can be used in $().kendoGrid( { columns: mycolumns } ) and the data source $().kendo.data.DataSource( { fields: mycolumns } ). 
Declined
Last Updated: 27 Feb 2015 21:30 by ADMIN
Created by: Daniel
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
would be nice to be able to manipulate the grid itself before to data is loaded (wich eventually takes some time).
some manipulations on the grid seems to be irritating, if they are not happend till the full datasource is loaded
Declined
Last Updated: 27 Feb 2015 21:30 by ADMIN
Created by: IKKI
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Now, we create a confirm window by these code:

$(".exitBtn").click(function(e){
    e.preventDefault();
    var exitWindow = $("<div class='p20 tac' />").kendoWindow({
        title: "exit...",
        resizable: false,
        modal: true
    });
    exitWindow.data("kendoWindow").content($("#exit").html()).center().open();
    exitWindow.find(".confirm,.cancel").click(function() {
        if ($(this).hasClass("confirm")) {
            alert("blabla...");
        }
        exitWindow.data("kendoWindow").close();
    }).end()
});
<script id="exit" type="text/x-kendo-template">
    <p>blabla...</p>
</script>

It's so complicate!!!!!!!!!!
I want to coding in this way:
$(".exitBtn").click(function(){
    $("<div class='p20 tac' />").kendoWindow({
        title: "exit...",
        content: "<p>blabla...</p>",
        resizable: false,
        modal: true,
        center: true,
        okVal: "Exit",
        cancelVal: "I don't",
        ok: function(){
            alert(Exiting...);
        },
        cancel: function(){
            exitWindow.close();
        }
    });
});
Declined
Last Updated: 27 Feb 2015 21:30 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Add a css class to the treeview to style an item (change complete background, indent, font-style etc). Currently only a spriteCssClass is available, but is not applicable for the total line. Must be available like the spriteCssClass, so available in datasource.
Declined
Last Updated: 27 Feb 2015 21:30 by ADMIN
Created by: John
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
Completed
Last Updated: 27 Feb 2015 21:30 by ADMIN
Created by: Igor
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
9
Editing raw HTML is sometimes very useful
Declined
Last Updated: 27 Feb 2015 21:29 by ADMIN
Or will I still need to use CkEditor?
Declined
Last Updated: 27 Feb 2015 21:29 by ADMIN
Created by: Gary
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
If you gave the Source View "HTML Syntax Highlighting" by default, you would have a winner. Most other editors lack this.
Completed
Last Updated: 27 Feb 2015 21:29 by ADMIN
Created by: Jack
Comments: 6
Category: Kendo UI for jQuery
Type: Feature Request
41
Buttons and toolbars (with icons and kendo themes) are much easier to use with Touch devices than the Menu widget
Declined
Last Updated: 27 Feb 2015 21:29 by ADMIN
Created by: Dan
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
This causes Kendo grid's javascript dataItem method to fail since it is trying to access a blank array.  The wrapper is useless to me without this.
Declined
Last Updated: 27 Feb 2015 21:28 by ADMIN
Created by: blake
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
It would be very beneficial to have the ability to set our own labels on our chart types. This way instead of having labels set a set amount for example 10s, for 1 to 100, labels could be set at just the intervals that make sense for our chart. Like 1,15,63,100. Since ranges can already be set at a variable amount it would be helpful to label those at the point they change.
Completed
Last Updated: 27 Feb 2015 21:28 by ADMIN
Created by: Fahad
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
1
I clicked Get Kendo UI button; it took 30 seconds to load a popup that asks for user/password and kept on saying "reading from ajax.microsoft.com" not sure why you're hitting that for....

well, then I chose the Register tab, it does nothing. I am using Latest Google Chrome.

If your own UI is not working properly, how can you expect people to count on you for their UIs ?
Declined
Last Updated: 27 Feb 2015 21:28 by ADMIN
Created by: Oscar
Comments: 7
Category: Kendo UI for jQuery
Type: Feature Request
23
It could be really nice if kendoui played well with twitter bootstrap, and widgets could be set through options to use the twitter bootstrap class names for buttons (.btn) etc. by a simple switch.
Completed
Last Updated: 27 Feb 2015 21:27 by ADMIN
Created by: Sam
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
2
In your Grid docs here:  http://www.kendoui.com/documentation/framework/datasource/configuration.aspx

The section on 'update:' doesn't actually show 'update:".  It shows 'read:'

The Grid docs also do not have a good example of where the data for an 'update' comes from.  For example I'm using Rails with MongoDB and I am currently getting an error b/c it says by JSON sent to the server is ill formed.  

"Started PUT "/users/4f98846bd51d1d3903000001" for 127.0.0.1 at 2012-04-25 23:51:30 -0500
Error occurred while parsing request parameters.
Contents:



MultiJson::DecodeError (lexical error: invalid char in json text.
                                       _id=4f98846bd51d1d3903000001&em
                     (right here) ------^
):
"

but with the examples I have no way of figuring out what is the cause on the client side.  It's not fleshed out enough for me to know the right way to fix it and where in all the settings I can do how to fix my JSON.  Which by the way from all I read, the issue is that the params are not compliant with the JSON spec.  They are getting sent down as args, but not JSON args.  Just a string that isn't nested in the proper brackets. "{ ..... }" I assume.

Anyway, that was an example of the kinds of things that the docs need more info on.  Why is the edit data that I am pushiing in the 'update' going as a string that isn't valid JSON even though I specified it is supposed to be JSON, and what way do I intercept it and wrap it to be conformant?

Completed
Last Updated: 27 Feb 2015 21:27 by ADMIN
Created by: Marien
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
There is a bug in the normalizeFilter function.

expression = {
                    logic: "and",
                    filters: isArray(expression) ? expression : [expression]
                }

The logic option is hardcoded, so it won't use the value you submit using the datasource.query() function.

Example:
dataSource.query(
{
    logic: "or",
    filter: [
       { field: "indicator", operator: "contains", value: '0.a' },
	{ field: "indicator", operator: "contains", value: '1.a' }
    ]
} 
)
Declined
Last Updated: 27 Feb 2015 21:27 by ADMIN
Created by: Robert
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
As per this forum post: http://www.kendoui.com//forums/mvc/grid/bug-grouping-name-does-not-honor-mvc-attributes.aspx, the MVC Helpers for the Grid honor the Display attribute in certain situations, but not others.Namely, when a column with a [Display] attribute is turned into a Group, the DisplayAttribute.Name is no longer honored.

But even that is technically not the correct behavior. The correct behavior is for the group to use DisplayAttribute.GroupName, then DisplayAttribute.Name if the GroupName is not specified.
Completed
Last Updated: 27 Feb 2015 21:27 by ADMIN
Created by: Cary Abramoff
Comments: 12
Category: Kendo UI for jQuery
Type: Feature Request
58
I am coming over as a Telerik Ajax developer. I am developing a pure html app against Amazon's S3 service and unfortuately the native sorting you provide is case sensitive. 

My sort ascending appears as

AAA
BBB
aaa
bbb

not very intuitive for end users...