Kendo UI Feedback
Kendo UI by Progess is a modern HTML5, jQuery-based framework that provides everything you need to build web and mobile sites/apps with HTML and JavaScript. It includes optional server-side wrappers for ASP.NET MVC, JSP and PHP frameworks.
Download a free Kendo UI Trial
Try Kendo UI Online Demos
Help make Kendo UI better by sharing and voting on ideas here! Deal? Cool. Thanks.
-
Cut / truncate when using Number Formatting
We are using you "number formatting API" (http://docs.telerik.com/kendo-ui/framework/globalization/numberformatting) to display the numbers on our webpage.
For that, your API works fine as long as we round the numbers. E.g.:
kendo.toString(10.12, "n0"); // will result in 10
kendo.toString(10.99, "n0"); // will result in 11
But we have some use-cases where we have to cut/truncate the number so that:kendo.toString(10.999, "n0"); // SHOULD result in 10
Here we just want to cut all decimals without any rounding, but I can´t find this option in your API documentation !!
I think this is a very basic use-case which should be handled…3 votes -
Resource language for Vietnam
I am developing a Vietnamese Web Application, using Kendo UI for ASP.NET MVC. But I cannot find out resource language (*.DLL) for Vietnam. Please send me it, thanks alot!
1 vote -
Provide a kendo.culture.all.min.js file on official releases
Using a single minified culture file that would have all cultures supported by Kendo UI included can be very useful. Although it is possible do this manually by combining all files currently provided on official releases, this would have to be done every time Kendo UI is updated to a newer version. An official file would make things much more straightforward.
8 votes -
Add support for standard .Net format
Kendo support only "N" format for number format. If not supported format is provided (for example "F2" for fixed point with 2 decimal), the number could have F in the front, or be truncated etc. Would like to be able to use a standard .Net formats to avoid such a problems
3 votesKenshin, Kendo UI Team responded
The supported number formats are listed in thsi topic from the documentation:
http://docs.telerik.com/kendo-ui/framework/globalization/numberformattingAlthough not all .Net number formats are supported out of the box, you can use custom formatting, as explained in the article, to achieve your goal.
-
Ordered days of week in kendo.cultures.current.calendar.days
Add "daysOrdered" property to the kendo.cultures.current.calendar.days object, which would contains days of week sorted by the first day of week (Sunday or Monday)
1 vote -
Ignore culture on input in NumericTextBox
As suggested here : http://www.telerik.com/forums/supporting-both-comma-and-dot-for-decimal-input
With this example : http://trykendoui.telerik.com/ikId/2Having to force either the dot or comma for numerical input is cumbersome in applications where customers input data all day long and it has to be effective.
I would suggest a flag named along the lines of "IgnoreCultureOnInput" which would allow you to punch in either the dot or the comma, but have it converted it back into your local for display.
Note that the example above is not complete as it is :
1 - locale specific (won't adjust if you locale calls for a comma instead)
2…35 votes -
Add Quarter as a formatting option to toString
We'd like to be able to pass "Q" into the toString function for a date and have it return the quarter.
ex.
kendo.toString(new Date(2000, 10, 6), "Q") -> Q461 votes -
Update kendo.format to support number formatting for thousand/million etc using "," suffixes
As per the .NET format support shown here:
http://stackoverflow.com/questions/11731996/string-format-numbers-thousands-123k-millions-123m-billions-123bAnd here:
http://msdn.microsoft.com/en-us/library/0c899ak8%28v=vs.100%29.aspx#SpecifierTh123456789.ToString("#,##0,") will return "123,457".
123456789.ToString("#,##0,K") will return "123,457K".kendo.format("{0:#,##0,", 123456789) will return "123,456,789".
kendo.format("{0:#,##0,K", 123456789) will return "123,456,789K".As per the .NET standard, each trailing comma will round off 3 digits, so 123456789.ToString("#,##0,,M") will return "123M".
72 votes -
2 votes
- Don't see your idea?