Currently there is no possibility to use messages file to work with loaders. Because of check if widget exists.
Posted this bug here: http://stackoverflow.com/questions/39412559/kendo-ui-colorpicker-validation-bug-for-hex-colors Below the copy: The Kendo UI color picker control allows entering HEX value manually. But is has a bug: if you try to enter #123XXX, you will see then #112233 The reason is the Kendo UI color picker parses the first part of the color #123 (which is a correct short form) and ignores the rest XXX symbols (which are not valid HEX symbols) If you try another case: enter #XXX123, you will see the validation error (HEX value will be highlighted with red). I need to validate correctly both cases and show the validation error. But I can not find a way to add custom validation to this control. Question: do you know how to work around this bug and make Kendo UI color picker control fail on validating values like #123XXX, #ADCXYZ, #19BW00 instead of cutting off the last 3 symbols and interpret the first 3 as a short HEX form?
If we need to run some code in all of views, there is no way to do it besides add the call to each and every view in the project. In a large scale project that might have 100 views in many seperate folders and sub folders - this become a nightmare. You should add the ability to add a generic event to all the views (kind of a "base class" for view) or by implementing the attached event via the application definition [var app = new kendo.mobile.Application()...] Thanks, ilan.
Locked columns can only be on one side of the Grid. In Kendo Grid, is it possible to have locked columns on the left and right side. For Eg: my grid has like 20 columns and i want to lock first few columns to the left side and also lock the custom commands column on the right side of the grid.
You can enter cross sheet references manually, but end users would like being able to copy from one sheet to another creating a cross sheet reference instead of copying the value
I am responsible for creating Coded UI tests using Visual Studio 2013 against a web based application using Telerik KendoUI. When running my test Whenever I click on a specific drop down, and select an item the web application becomes busy as if it is trying to populated results to a grid. It never does. However, doing this manually (not running my test), the results are displayed. Now my tests were using Visual Studio record/playback mechanism through the UIMaps editor. Then I tried to create customized code to interact with the Telerik KendoUI control...it did not work. I have been reading that Visual Studio Coded UI does not support Telerik KendoUI controls. I also read it does. Apparently there is a Q1 2013 (v. 2013.1.0220) support package that will help in this. See link: http://www.telerik.com/forums/radtabcontrol-control-support-microsoft-coded-ui-automation I am not sure where this package is or where to go get support for Telerik KendoUI. Does Visual Studio Coded UI support KendoUI controls? If so, where do I go to get support? Or how do I add the extension and update to Visual Studio 2013 Coded UI? What should I do?
kendo.ui.notification is not responsive which makes it difficult to use out-of-the-box in a mobile environment. See https://github.com/telerik/kendo-ui-core/issues/2351 But ideally in a kendo.mobile.Application, the notification should expand downward below the layout header or upward above the layout footer on the full width of the device screen.
ToolBar items only have two states (besides visible and enabled): - displayed in the toolbar - displayed in the overflow dropdown (kind of responsive because not very practical on mobile devices where you are left with two visible buttons at the most, and a possibly large overflow dropdown) On mobile devices, we would buttons buttons that shrink to icon only (no text) before being sent to overflow dropdown. This would improve greatly the responsiveness.
Please create a multi-text control (free text, no selection) like this: http://docs.webix.com/samples/60_pro/02_form/01_multitext.html None of your current widgets does this, and simulating it with a listview, a multi-select or even a one-column grid is not a valid option for such an otherwise simple control. The control is meant to store and return an array of arbitrary values, but ideally it could be extended to use any type of sub-control, like date-pickers for multiple dates, masked text boxes for structured values, etc.
This is best javascript network visualization tool i have seen but it is very expensive. Could you add some widgets like this to Kendo? http://cambridge-intelligence.com/keylines/
Please consider to support grouped boxplot for Kendo UI. For example, we would like to compare the machine capacity within multiple parameters, like machine type, machine no, and employee. We need to group 2 or more parameters in x-axis. Many statistical package could generate this group boxplot and reach our request. But we need to developt a web application with this function.
After export there are html tags in cells of excel file. It could be fixed with custom handler for excelExport event, but it's not a good approach. Here is an example of this bug: http://dojo.telerik.com/eKARU/3
Can you please add support different scales in radar charts for the different categories/axes? The radar chart becomes mostly useless when, e.g., one category has values that range from 0-10 and another ranges from 0 to 1,000,000.
For each value at data series i need a legend related to the value
how can we add minor grid lines between majorgridlines ??
adding / inserting form elements such as input, select (dropdown) through Kendo UI editor widgets
The fixed group header in the Multiselect Box is an awesome feature. But in some cases it is more confusing than helpfull. In those cases it should be possible the use grouping without the Fixed Group Header. At the time of writing (2017 Q1) this is only possible with a workaround. It would be awesome if this behaviour could be possible without the databound function. Example of the 'problem' and the workaround: http://dojo.telerik.com/OkUhE/5
All controls which work with Models (validation/grid etc) should recognize displayName instead of field name to allow localization. Model.define({ fields: { Description: { type: "string", displayName: "Beschreibung", validation: { required: true, maxlength: 200 } }, Number: { type: "number", validation: { min: 0, max: 300 } } } });
Currently there does not seem to be a way to get a reference to all kendo controls within a specified element or otherwise and perform generic operations on them. I would propose you be able to call a JQuery method and do such things as the following: $(.kendoControlClass').each(function () { $(this).getKendoControl.enable(); }); or call methods on specific type of controls $(.kendoControlClass-selectable').each(function () { $(this).getKendoControl.clearSelection(); });