export kendo UI grid with kendo footer templates and aggregates results. then no need to use other tool for making report in excel.
Currently it does not support group/ungroup excel feature using kendo.ooxml.Workbook. Please refer http://prntscr.com/iykrqy for more detail requirement.
Look at the emerging WASM projects such as Blazor or Ooui. The obvious path seems to be to have a strong HTML based suite, i.e Kendo, ported to Blazor. However another option would be to improve the Xamarin forms components to have comparable functionality to their desktop counterpartys so they can be used in LOB applications under Ooui. The current Xamarin components are too mobile centric. A third option, which admittedly seems like a bit of a long shot at present, would be to take Moonlight, strip out the plugin stuff, strip out all but the layout code, and redo that to write to an HTML Canvas. Now that's probably outside your scope although in my opinion its the most attractive of the 3 options. In summary I suggest you look at providing a full featured UI component suite that runs under wasm.
I've noticed that the Kendo notification widget is not response and does not wrap content as the browser shrinks.
I'm trying to export the kendo-ui platform into the golang programming language and would like to know if the kendo-ui documentation exists in some other format easier to handle. At the moment, I made a robot that goes into the documentation, filters the hml and assembles the corresponding code in golang, but I would like to be able to optimize the process. https://godoc.org/github.com/helmutkemper/telerik https://godoc.org/github.com/helmutkemper/telerik#example-KendoUiDialog-String https://godoc.org/github.com/helmutkemper/telerik#example-FrameworkForm-ToForm https://godoc.org/github.com/helmutkemper/telerik#example-FrameworkForm-ToScript
There are many properties that can be set during initialization that cannot be changed through the API afterwards. Take the Kendo UI ToolBar for example. You can add a button to the toolbar and set the text, but you cannot change the text afterwards unless you update the element directly. It may seem like a simple thing to change the text of an element, like so: $("#myButton").text("New Text"). However, if you had set the imageUrl as well, setting the text like I did above would remove the image. Knowing that, you could get the text node and update the nodeValue. That may work today but could easily be broken during a Kendo UI update (for example, if the update included a change that wraps the text in a span). Having to deal with native elements after they have been created by the Kendo UI components is a dangerous practice for developers as it requires an internal knowledge of how elements are rendered based on the different options set. As mentioned above, it is also dangerous as any update could break our code. Therefore, it is imperative to expose methods that allow us to modify any properties through the API (where possible) to allow us to create clean and easy to maintain code. If you search the feedback, you will see many requests to add a method here and a method there. There is even a related one to this called "Kendo Mobile: Methods to set properties dynamically". Suggestion: When you have child elements, such as buttons on the toolbar, please allow us to update those widgets directly rather than through the parent. For example, instead of $("#myToolbar").data("kendoToolBar").enable("#myButton"), allow us to do something like this $("#myButton").data("kendoToolBarItem").enable();
It would be nice to have the option to add new rows at the bottom of the grid, just like Jquery grid has that option "createAt": "bottom".
We'd like radial gauges to have pointers we may customize, and/or to have a variety of pointerType settings, e.g., a marker that follows the circumference next to the scale; a custom image or shape that may be imported in place of the standard needle, such as the outline of a boat for heading.
Currently a tornado chart is not available in the Kendo Charts library. Is there a way to create tornado charts with telerik html charts?
currently is 1px to 1pt mapped in the kendo.drawing.drawDOM method. Actually, this should make it simpler, as described in https://docs.telerik.com/kendo-ui/framework/drawing/drawing-dom#dimensions-and-css-units Unfortunately, this prevents the use of the units cm, in, mm and pt.
It would be very useful from a visual and functional perspective to be able to view scheduler items in a multi-year view, that seems to be currently unsupported.
TOOL BAR Button Positions should have 3 option: right and left, and one stretched or not in the middle. That would be nice!
Please add the multiple date selection option to the kendoDatePicker component as for the kendoCalendar. It would be useful in the table column header to filter date values. Currently, I have to use two DatePicker to select min and max date. Calandar is not an option in my case.
Indeed today, to correctly display red or other points depending on the template, it is necessary to make lines of codes so that the rendering is present. It should be done automatically as soon as the array of dates changes (as it is linked to the calendar), I'm talking about the small calendar that is in the header of the scheduler.
Kendo UI jQuery Scheduler: grab a task (appointment) to cells, without displaying the lines of separation. Set an interval property for the drag and drop, which will be defined, 15 or 30 minutes or even smaller, without necessarily having to display the lines of separation (minorTickCount) increases in this case the height of the cells.