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.
I have a kentoTreeList with a custom footer in which I'm calculating my own footer numbers. When I export the grid, I see the div tags embedded in my footer template. Is there a way to export to excel once the footer template is populated?
Kendo chart are not stacked
Cool Kendo UI Q1 2016 webinar today... could not ask any questions using IE11 so lost on prize chances. Very entertaining Thank you. Are there any good working examples of using the new Grid or Spreadsheet features utilizing an API such as government information as discussed?
Hi You have very nice charts colorful and detail but thing page like upperside we have combobox or radiobutton and i have bar chart so when i click selections i want to convert bar chart to area chart or scatter chart to do this dynamically way... It will be best
Hello , I am working on kendo UI with infinite scroll functionality, but when I going to get updated data of kendo ui before scroll and after scroll, its only providing me only after scroll changed data not the before scroll edited data, So please suggest me the solution of this issue.