Allow creation of custom labels that can be placed any where on the chart surface using x, y coordinates.
Many times, we had to implement workarounds to compensate a feature that isn't available in Kendo (User voice is full of those missing features). Sometime, a small change in Kendo's source code may be a solution to complex workaround. Knowing that Kendo UI has been build over many open source libraries, it would be nice to use the same spirit by allowing users to contribute to Kendo if they want to do so. Users could help adding features to existing widgets but they could also help to improve the documentation or by creating demos. You'll still have to review the submitted code to make sure it meets Kendo's standards but I'm sure Kendo and the users would both get the benefits of those contribution.
Need "Diamond" marker type in kendo chart
In the demo: http://demos.telerik.com/kendo-ui/slider/index Slider / Basic Usage demo If you create sliders with different max, min, smallStep, and largeStep attributes the tops of the verticle sliders won't line up unless you have vertical-align: top; set. Maybe you could add this to your demo code. --- In the Style ... "div.eqSlider {" vertical-align: top; --- The demo all align because these 4 attributes are all set to the same values. If you modify the demo so one is different it won't line up in IE9. FF35 lines up unless you use a large max and a small min to cause no hash marks to show up. IE: -31 to 31 Below are some changes to the demo that makes the tops not line up. ... <input class="eqSlider" value="10" /> <input class="eqSliderBig" value="15" /> <!-- Changed to use ...Big --> ... $(".eqSlider").kendoSlider({ orientation: "vertical", min: -20, max: 20, smallStep: 1, largeStep: 20, showButtons: false }); /* Added Big to make the last slider have a different max,min */ $(".eqSliderBig").kendoSlider({ orientation: "vertical", min: -30, max: 30, /* Change to -31 to 30 and no hash lines will show up and FF35 won't * align tops */ smallStep: 1, largeStep: 20, showButtons: false }); ... div.eqSlider { display: inline-block; margin: 0 12px; height: 122px; vertical-align: top; /* Added to make tops align even if the max, min, smallStep, or largeStep are different */ /* Remove and the tops won't align in IE9 */ } /* Added for the ...Big slider */ div.eqSliderBig { display: inline-block; margin: 0 12px; height: 122px; vertical-align: top; /* Added to make tops align even if the max, min, smallStep, or largeStep are different */ /* Remove and the tops won't align in IE9 */ } ...
We use your grids, combo boxes and such in highly customized way, and most of them use custom functionality to complete a feature we need. In many cases these are some default features we would like to apply to all controls of a certain type. For example, we use a script which forces the user when using a combo box to always select a value and not enter incomplete text. This through script works like a charm, but a big problem is that each and every combo in our application must have this applied. Another example is responsive grids....we have a script in place which on a certain resolution transforms your grid into a responsive table. This also works like a charm. The problem is that we only now made the script...we now need to apply it manually to 120+ grids in our application. It would also be great if you would make the global event handler chainable with the regular one (so for example first the global one first from queue, then the regular one). Aslo it would be great if it would receive the affected grid in the arguments so that we can also make selector logic...for example all grids which have some css class...execute desired functionality. This would help SO much!
http://docs.telerik.com/kendo-ui/api/javascript/ui/numerictextbox min Number(default: null) Specifies the smallest value the user can enter. Example - specify max option <<< max should be min
When a user downloads a custom build from http://www.telerik.com/download/custom-download, provide a URL that the user can bookmark/save then use to go back to the custom build page with the same components checked and same kendo version selected.
In the current implementation of the widget, when user tries panning or zooming, there are not map tiles transitions. You just see some white squares until the new tiles are rendered. It would provide a better user experience to have some sort of transition in those interactions.
It would be very useful that the Kendo Map widget provides out of the box a control (some sort of dropdown or list view) that allows to select a layer. This would be great for scenarios where the user wants to see a different layer of the map. For example, when the user needs to switch from an Street view to an Aerial view. This feature is very common in Map controls. So I think, it's something that should be supported by this widget, too.
Hi, I want to use Css style for styling Kendo chart. Currently I am using 10-15 charts on my projects, for that I need to hard coded the property value for individual chart.Is there any way to do that ? Thanks, Bikash
I created a Kendo UI grid with two columns. One is just a number called num0. the other is is called num1 and it's data is created from num0 through a template. The filter on num0 works find. The filter on num1 shows up and you can use it but no matches are found. ie: filter on num1 and select "Is equal" and enter "2", then click "Filter" and grid is emptied when it should have shown the 1st record. I think it has something to do with the "template" that I am using to fill num1 column. http://jsfiddle.net/elbarto99/acyxekgx/
The "Grid / Filter menu customization" http://demos.telerik.com/kendo-ui/grid/filter-menu-customization doesn't have enough similar "City" names to test the "Starts with" filter when a person might enter "B" and list multiple citys that start with "B" Currently there is only one city name per letter. Maybe you could make a couple cities have the same start letter. ie: "Boston" and "Berkley" Then you would see that the "Starts with" won't function for the "City" column because you can't enter just "B" and have to select a city from the cityFilter DropDownList.
Kendo UI Tree List control currently does not support column resize and frozen columns. The former prevents us from using it as our end users will not be able to resize the columns when the tree list columns are localized.
http://docs.telerik.com/kendo-ui/api/jsp/rangeslider http://docs.telerik.com/kendo-ui/api/jsp/slider under the "tickPlacement" section says: The available options are: It needs to be: The available options are: both, ... and list the other options. I found "both" being used here: http://demos.telerik.com/kendo-ui/slider/right-to-left-support but I don't know what else I could used for other effects
in http://demos.telerik.com/kendo-ui/datepicker/index which is the DATEPICKER demo change attribute in label tag from "<label datepicker="start">Show ..." to "<label for="datepicker">Show ..." Reason: I don't know what the datepicker="start" attribute is for the <label> tag and I think it is an error and should be for="datepicker" which is a valid attribute for the <label> tag and makes the cursor move to the datepicker input widgit if the label is clicked.
1. If I enter 9/1/15, Kendo control shows me error and asks me to enter 9/1/2015. 2. If I enter 4 and press tab => it should fill it with 4/01/2014. 3. If I enter 4/01 and press tab => it should fill it with 4/01/2014. 4. If I enter 31/2/2015, it should automatically round it to 28/2/2015. I compared this to other Telerik Product (e.g. Telerik ASP .NET forms controls) and I noticed above items. As this is currently working in ASP .NET Forms control using jQuery/javascript, I believe it should be workable in same fashion as we can't tell our client that one control set works one way for them on one site and other control set works differently by same provider on their other site.
Hi, When using Kendo in our team's solution, we parse all of the kendo files to build our own dependency tree. While trying to recently integrate excel export for grids, I noticed two issues with dependencies: kendo.excel.js references kendo.data.TreeListDataSource, but does not require kendo.treelist, so we get an undefined exception. Export requires jszip, but jszip is not mentioned as a dependency in any of the kendo files. Can we get those added? Thanks!
Please support Internet Explorer 8 when using Kendo-Angular by supporting Angular 1.2.* branch as well.
Range area and column A detailed description of the problem to the link: http://www.telerik.com/forums/range-area-and-column
It is actually a problem that we have on our corporative product. We are using a Kendo.Map but the user has the ability of swapping between our corporative version of OSM, the public OSM, Bing and Aerial map. This means that I have to create a map with five layers at the beginning and set different opacities downloading all the time the tiles for the 5 layers or I have to destroy the map and shift layers like you asked me to do in this post http://www.telerik.com/forums/add-layer-dynamically-to-map Could be possible to include a new feature on the maps that allow the developer to change dynamically the layer type, the url template and the subdomains. without having to destroy the map, set it empty and create it again. Thanks a lot.