Hi Kendo UI Team, maybe in the future, you can add offline documentation bundled with the downloaded package, i think it would be nice, thanks
Implement Excel-like functionality of selecting a cell, selecting the bottom right corner and then dragging down to either copy the value (string) or increment (number). This feature saves a lot of time and is the main reason we use custom Excel apps as database data entry tools. Implementing this in Kendo would allow us to migrate to the web
LESS is a very good idea to use, makes Kendo styles much more readable! However, right now the LESS syntax used to generate styles (ThemeBuilder for example) use a non-official branch of LESS syntax. Unfortunately this makes LESS impossible to compile any other way than using the changed JS libraries and harder to integrate with other LESS in the project. I suggest you either convince the LESS community that the changes are good and merge them into the official branch or consider the possibilities to use official LESS syntax.
The Editor widget would be configurable to support (GitHub Flavored) Markdown syntax and would optionally display a live preview of the text.
A gantt chart would be a nice addition to the too lset.
Steps to reproduce the bug 1) create a grid that uses “In Cell” editing and have a validation on a cell (in this example i will use a required field) 2) click in the required cell 3) click out of the required cell to cause the validation error to fire 4) click back into the cell which had the validation error 5) press escape 6) click into a different cell and enter a value 7) click out of the cell This will cause the cell the be edited but it will not be marked as dirty!!! The issue is that multiple submit handlers are getting assigned to the form I’ve updated the following to remove submit handlers after submit has been called. I made a change to the telerik.grid.editing.min.js file to resolve the issue. setting the submit handler to null after submitting the form seems to do the trick _validateForm: function (n) { var o = this.form(); if (o.length) { var p = o.validate(); if (p) { this.validate(); p.settings.submitHandler = function () { n(); p.settings.submitHandler = a.noop }; o.submit(); p.settings.submitHandler = null; } } },
| category 1 | category 2 | |----------------|----------------| | col 1 | col 2 | col 3 | col 4 |
Please provide a way to display multi-line labels in the chart controls such as the bar chart category axis. The need is detailed in this post: http://stackoverflow.com/questions/13247577/line-break-in-category-label-of-kendo-ui-chart
Hello, I try datetimepickerfor control on a mvc project, I set min and max values for it, when I change time, it validates for min, max values and changes automatically but not for date, so I had to write script below. Regards. function dateChange(){ if (this.value() < this.min()) { this.value(this.min()); } else if (this.value() > this.max()) { this.value(this.max()); } }
Dear All, There should be a provision to enter numeric equations like =15.75.90*24/100 and on hitting enter it should calculate result and fill in text box being edited. Also there should be one calculator attached to numeric text box, can be opened or closed using F4 and after calculating result should be copied to text box. Thanks Regards Surinder
Can we have a way to implement the org chart functionality (present in Rad Controls for ASP.NET) in MVC using Kendo
In order to visualize process workflow items and their sequence, a new Kendo UI control would be a big step forward. I was getting inspired by SAPUI5 control "process flow". Here the link: https://sapui5.netweaver.ondemand.com/explored.html#/sample/sap.suite.ui.commons.sample.ProcessFlowConnectionLabels/preview This UI is able to be used in different situations: 1. Visual display of workflow steps 2. Display of relations between business work items: connections and their frequency of usages between business workflow items . The UI should be able to define workflow items and their connection. It should also be possible to define templates for connection types and process item types.
I am looking for a way to design a data entry form inside kendoui window. which has three divs div 1 has toolbar div 2 has data entry controls div 3 has sttus bar div 1 should be stuck to top of window div 3 should be stuck to bottom of window div 2 should have a scroll bar if its contents cant fit in its height contents should not scroll at window level, but at div 2 level only. Thanks
The disabled range sliders still have cursor:pointer. You need to add .k-state-disabled .k-tick, .k-state-disabled .k-slider-selection, ... { cursor: default!important; outline: 0 }
I take many times for one issue.How can i refresh ImageBrowser manually?i try this one already var editor = $("#editor").data("kendoEditor"); editor.bind("execute", function(e) { if (e.name == "insertimage") { // necessary because event is fired before window show setTimeout(function() { var imagebrowser = $("[data-role=imagebrowser]").data("kendoImageBrowser"); imagebrowser.upload.bind("upload", function() { imagebrowser.dataSource.read(); }); }); } }); But Thumbnail Image never fires again so image never change.
Please support Internet Explorer 8 when using Kendo-Angular by supporting Angular 1.2.* branch as well.
Currently if I choose specific options in editor in iPhone 5 and 6 e.g. bold, italic and underline. It retains the style for first line only. As soon as I hit enter all the selected style is gone. If editor is retaining the style in multi lines in other browsers then it should also retain in iPhone as well
I am using Kendo diagram for Workflow wizard. right now i am using my custom icons for Workflow shapes. I also want to use icon/image for connection lines between 2 shapes. Please provide this feature.
Tooltips (especially in charts) get clipped. Need to ensure tooltip is posted in display area.