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
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.
CSP is a great security feature. It should be fully supported by Kendo! The best would be some way to precompile Kendo Templates. Second option could be that you can use Kendo + CSP when not using own Kendo Templates at all.
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.
The only way to detect when a control has completed binding to a datasource is via it's dataBound event. When you need to know if multiple controls have been dataBound it creates a less than ideal situation. A common scenario I encounter is when I have a search view with multiple dropdownlists and I need to set default values in those dropdownlists prior to loading a Kendo grid with search results based on the selections in the dropdownlists. Note: these are not cascading dropdowns - each dropdownlist is independent of the others. In order to set the selected values in each dropdownlist I have to know when each one is databound and only then can I set the selected value. Once all dropdownlists are databound then I can refresh the grid based on those selections. In order to make this work I have to "chain" the dropdownlists together. To do this I set the first dropdownlist AutoBind = true and the rest false. When the first dropdownlist dataBound event fires my JavaScript selects the correct value in that dropdownlist and refreshes the datasource on the next dropdownlist in the chain. When its dataBound event fires I select its value and refresh the next dropdownlist's datasource in the chain and so forth. This pattern continues until all dropdownlists are databound. In the last dropdownlist dataBound event handler I refresh the grid's datasource now that all the default selections have been made. This implementation is messy and cumbersome. It would be nice to have a parent Kendo ajax manager that all databound controls in the view could register with when the view loads. Then each databound control would notify the ajax manager when it is databound. The ajax manager would then fire an event to indicate that all controls have been databound. Then my code could handle setting the default dropdownlist values and refreshing the grid in one event handler which would be much cleaner than the current approach.
It would be really easy if we can directly load parameters from Web Api calls and load into ButtonGroup dynamically. The idea is to genarate ButtonGroup according to the number of parameters in web response. There should be option to assign index for each button based on the value in the Web API call. I
Navigator works great. Pan and Zoom work great. But when you try both on the page zooming and panning completely mess up the data navigator. I realize pan and zoom are new so maybe this is already in the works. My support ticket pointing out the problem: http://www.telerik.com/account/support-tickets/view-ticket?threadid=1013202
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?