Hi!
In my web application I want to auto-detect which formats (number, date) and language to use.
This is what Chrome, Firefox and IE/Edge (default settings) send to the server:
Chrome: Accept-Language: de-DE,de;q=0.8,en-US;q=0.6,en;q=0.4
Firefox: Accept-Language: de,en-US;q=0.7,en;q=0.3
IE/Edge: Accept-Language: de-AT
If the browser sends language information in the form of "xx-XX" (e.g. de-AT, de-DE, en-US), then it's easy to implement because there is a "kendo.culture.xx-XX.min.js" AND a "kendo.messages.xx-XX.min.js" file, and I have defined a default fallback (e.g. en-US) if "xx-XX" is not yet supported by Kendo.
However, if I only get "xx" (e.g. de, en) from the browser, then there is a "kendo.culture.xx.min.js" BUT NO "kendo.messages.xx.min.js" file, and I don't know how to handle these cases without introducing some kind of lookup table (e.g. to use de-DE, when Browser only says de).
Is there a reason, why there are no general de, en etc. messages files? What would be best practice to implement automatic browser format/language detection?
Best regards,
Kaan
Hi!
I was wondering if maybe the number group separator is wrong for de-AT (Austrian German).
In the "kendo.culture-de-AT.min.js" file the number group separator is defined as " " (blank space), but in Windows I am used to have the same character as in de-DE (German German), which is a "." (period).
I am not sure what the "real" standard is, but I have attached a screenshot of the Windows settings dialog for default date/number formats.
Best regards,
Kaan
Hello, when using Kendo UI widgets we are looking for ways to replace (not use) the default Kendo UI class names. We know that we can add our own class names through template markup however there's a significant amount of Kendo generated markup that uses many classes that eventually end up conflicting with other instances of the same Kendo widget currently on the same single page application view.
We want to use multiple instances of e.g. Kendo Listview for completely different designs hence we end up with class name conflicts and we have to start overriding classes in multiple places. We don't want to override, we want to start off with a clean slate; use our own class names with exactly the styles that we need.
jQuery Tabs is a perfect example of what we're looking to do:
http://api.jqueryui.com/tabs/
http://learn.jquery.com/jquery-ui/widget-factory/classes-option/
Please let me know how we can manage ALL class names in Kendo UI Widgets.
Thank you!
Alejandro

In our product we currently have a kendo toolbar in which we have placed a kendo menu. I believe that this is not something that is supported by kendo. We have done this to achieve what's attached in the image. It's basically a dropdown with 2 items. The items have an image and text and the selected item only shows the image. We have this working pretty much exactly like we want it right now. Except, now we're trying to make our product work with a screen reader and the feedback from the screen reader isn't acceptable and I keep hitting roadblocks trying to get it to work.
My question is whether there is a different control we could use here that might get us close to the behavior we want, but also maybe work a bit better out of the box.
Thanks!
Hello,
Is there a way i can override default tree list drag and drop event?
I would need similar functionality as tree view where i can order the rows and insert before or after any row.
Any help would be appreciated.
Thanks in advance!
Hi,
I have came across the following problem with kendo grid:
When i scroll down page and try to set the filter. The filter dropdown is detached from grid. The same issue occurs in date picker. In addition, distance between filter dropdown and grid corresponds the the scroll position. The issue persists across entire application, on all kendo controls. I have attached the screenshots below
Best Regards,
Rafal
PS: The same problem was posted before on
http://www.telerik.com/forums/bug-dropdown-server-filter-list-detaches-on-scroll
but unfortunately the new version of kendo not resolved the issue.
I am using kendo editor as so:
@(Html.Kendo().EditorFor(m => m.Interests)
.Name("txtInterests")
.Tag("div") -- inline mode I have also tried as an iframe
.Tools(t => t.Clear())
.HtmlAttributes(new { style = "width:100%; height: 400px" })
)
i want to either set the font that is used in the editor or have it use the font from the page. The use will not be able to change it.
I tried inline mode and that did pick up the page font, but every time i click into the editable area a tool bar pops up and i do not want to see the toolbar.
I don't really care if i use inline or iframe i just want to be able to control the font-family and font-size of the editor but inheriting the page or setting them in code
any help would be great.
Thanks,
