Hi Guys, I've notice that there is no Codabar type in the Kendo UI Barcode, but the silverlight version has it. Once migrated the codabar type is not available, It would be great to have it added, it is widely used for applications that require serial numbers, such as management of blood banks, slips for door-todoor delivery services and member cards. Thanks
Please add Breadcrum functionality in kendo.
Custom validations are not triggered by blurring the input (as it visually seems), but when the set() method of the underlying model is called to change the value of the edited field. Possible workaround: $('input[name="ProductName"]').bind('blur', function(){ // get a reference to the built-in validator var validator = e.container.data("kendoValidator"); validator.validate(); })
This is a great framework that takes the best ideas of angular and react without being as difficult to learn as either of them. Please consider it.
Make the html date and time controls match the skins for the native Kendo UI look. This way a form built with Kendo UI will look pleasant across a mixture of html and Keno UI controls. In some cases it would be better to have the mobile style "scroll" to enter dates and times but the look is off putting.
Add possibility to create cell editors with button opening popup or window containing for example Rich text editor, textarea or any other advanced editor. Currently it is impossible due to some limitations in grid incell editing design.
Kendo OOXML should allow to give Pattern Style and Pattern Color for cell.
Right now, the kendo-ui docs are a bit difficult to get to and navigate. They're inherently clear as to where they are, being nested 3 clicks beyond ["SUPPORT AND LEARNING"] in the top menu. just to illustrate this, I made a video of how you get to the docs from a cold search of kendo ui. It takes way too many page steps just to get to the docs. [VIDEO LINK] https://www.dropbox.com/s/d0osh6imco5fq08/2016-05-05-2016-01.mp4?dl=0 Once you're there, it's not a bad experience - but still, I think there really ought to be a simple ["DOCUMENTATION]" menu item that is verbose and clear, since "[SUPPORT AND LEARNING]" sounds more like links to classes, tutorials, etc.
We need legend in kendo map for our requirement.
Chart series labels template to include html elements. At the moment, adding HTML elements in a chart series label template is possible but you cannot do anything on those elements. Would be nice to be able to re-template the labels by adding HTML elements in them and be able to design these elements or attach events to these elements.
How about showing a list of tables or views available to End user so that End user can Query on those and get his expected output as a result or Report
The style picker has to be manually populated with style names. It would be better if it could pull the style names out of the associated stylesheet and filter the list depending on the location of the cursor i.e. only show styles applicable to ‘a’ tags when a hyperlink is highlighted.
Dear All, There should be one simple calculator attached to numeric text box, it can be opened or closed using F4 and after calculating result should be copied to text box. Thanks Regards Surinder
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()); } }
The current implementation makes it too difficult to use a 3rd party icon font instead of the built in kendo sprites. I shouldn't have to specify the spriteCssClass and then add extra CSS or jQuery or both to handle position and sizing glitches. I also shouldn't be forced to use an entirely custom template just because I want to use an icon font.
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.
there should be a way to connect 'kendoDraggable' and 'kendoSortable' like the jquery ui example here: http://jqueryui.com/draggable/#sortable
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
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