Hello Kendo-Product-Team, there is this create library called xeditable which basically makes it easy to add edit functionality to a details-view. Have a look here: https://vitalets.github.io/x-editable/demo-bs3.html I think this would be a super addition to the kendo framework. In a typical business application you have a grid with the list of all products and when you click on one product you have a nice details page. Currently if you want to edit the product the user needs to go to a special edit form. With xeditable it is possible to add the editing capability directly into the details page. It's nice and easy for the user (less clicks) and it is easier for the develope (no extra edit form to build). I also think that it would be easy to do such a thing for you as you already have the controls and the framework. Thanks Andi
I'm currently using a chart with "categoryAxes.select" as a navigator for multiple other charts. Problem being, when I display too much data, the navigator (and other charts) become laggy. To help prevent that, I'd like a way to make the "selectEnd" and "SelectStart" events only fire on mouseup. That would prevent multiple redrawing and help with the performance.
I need to display multiple charts on one page. These charts are all based on the same timeserie. To help with data analysis, I need to align every chart and the easiest way to achive that would be to be able to specify a width for the plot area. Would you consider adding this feature ?
Currently adding additional shapes to the diagram can cause the layout manager to re-adjust the position of current visual shapes(shapedefaults: {visual}). It would be nice to have an additional event after all dataitems has been retrieved, currently the databound is executed for every row.
Working example or injclusion in kendo drawing api so that free form drawing of lines, text etc similar to the asp.net ajax image control can be drawn over a image and/or dom element. Using both mouse and/or touch events.
This should work like your silverlight version
Please impliment a simple way to display errors in tooltips for every control to prevent form cluttering.
Per the post here: http://www.telerik.com/forums/does-the-kendo-ui-grid-support-column-header-templates In order to achieve a custom header, we have to manipulate the DOM via jquery. That can get messes and makes the grid less maintainable.
I have short list of things that are either broken or not implemented. 1) Merging cells with formulas causes them to disappear (Big Bug) 2) Named Cells (Aliases) don't exist like in Excel (Limitation) 3) Changing row height causes bizarre effect where active row no longer lines up with row number (Bug) 4) Can not hide worksheet or create readonly cells (Limitation)
Little Square handle in the corner of a cell to repeat / increase counter (numeric/date) Just like Excel.
Define by Settings or via API Calls to enable or disable any Cell or Cell functions like Context Menu.
The step style for lines in a chart is very useful for logging digital data changes however in Kendo it only can be applied to line charts and not scatter lines where it would be very useful for telemetry displays. A choice of step first or step last where the visual change appears attached to the previous point on on the new point would be especially useful.
When exporting a PDF kendo returns a promise that is used to track progress and completion. When exporting to Excel the UI simply locks until the file is ready to be saved. It would be nice if exporting to Excel worked like exporting to PDF so the UI didn't lock while waiting for the file to process.
Now datepicker open only on click to icon, please add option to open datepicker on focus over input
Create a kendo ui router for SPA like ui-router for angularjs.
In a Combox, when you enter some characters, it will filter the list of items automatically for you when you are typing. For example, when you type "j", all items which contain "j" will appear in the list. Everything works so far until you need to type some character of Chinese with an input method. For example, when you try to input "è„š" (which means foot in English), you need to input "jiao" (the Pinyin of "è„š") within the input method. And something strange starts happening: the Combox will capture the first "j" and make it the first character in the Combox, and will still let "jiao" continue to get "è„š", and the final content in the Combox is "jè„š", but what we expect is "è„š" only. It seems like a defect.
Good day, I have a list which is having elements, based on that list the grid will be obtained. I've a requirement of changing the order of elements in that list. So when i change the order of list and run the report, the grid is obtaining with the order of before list but not with the newly changed order. Can i reorder the Grid columns based on that list elements after changing the order of list? Thanks, Sai
Currently the actions in an ActionSheet can only execute functions defined in the global space as stated in the documentation here: http://docs.telerik.com/kendo-ui/mobile/actionsheet#executing-actions "The callback can be either a function, or a method of a JavaScript object in the global scope." I want to be able to specify a data-model attribute so that the callback for my actions can be functions defined in a kendo observable (more specifically the kendo observable used by my view). This functionality would be similar to how data-model attributes work with modal views. As it is I don't want to be defining functions in the global scope - I consider it sloppy and messy. Does it not makes sense to use the scope of the containing view's model?
I'm using drawing.drawDOM to create a PDF. I have to make a table of contents (TOC) in the beginning of the PDF. It would be great if I had the ability to link to the correct section directly from the TOC. So <a href="#conclusion">Conclusion</a> and then later <a name="conclusion"></a> would make a link in the PDF so the reader could click on the Conclusion-link in the TOC and jump directly to the conclusion-section.