On drag the cloned sortable element gets placed right below the body tag...it would be nice if it also appending a custom class that lets us get a handle on the element to style it. ...just automatically without the need to wire up something special in the initialization of the widget.
Add complex examples like the ones we find on http://dev.sencha.com/deploy/ext-4.0.0/examples/
[Edited] Create a schedule view widget in Kendo UI Web.
Please consider adding a sample Line-Of-Business (LOB) application to your demo page. This more complex LOB app demo should show KendoUI widgets working together. Here are a couple ideas: - TabStrip contents containing Grids, Graphs, complex entry form, or another nested TabStrip. - Window having other nested KendoUI widgets in its content. - Nested wigets should 'lazy' load or load on demand? - MVVM events wiring between widgets? We're new to KendoUI, and it would really help to see how a proper LOB app powered by KendoUI is built, especially with that cool MVVM. Thanks.
HI Telerik, We are coming over from the AJAX suite and have to say that the demos and documentation are horrible at best. One of the greatest strength we have seen with Telerik has been your demos of almost every variation and sample most people could come by with news ones added quite often. If there wasn't a demo you were almost sure to find it in the Documentation. The last place to look before contacting Telerik is the FORUMS but this is impossible with the way KendoUI forums use the search. It search ALL forums not just the current sub forum and pulls things back like Client Log-in pages etc.. The forum search needs to work more like the Main Telerik Forum site otherwise its impossible to use the forum unless you want to go through each forum page by page The keno UI demos are geared towards just the client side. There is very little show how to do things with the server wrapper for MVC. It would also be nice to show the service code as well for things like the data source read, create, update and destroy events for widgets like the grid etc.. Here is a sample. http://demos.kendoui.com/web/grid/editing-custom.html The demos shows the client side HTML version and if you choose the RAZOR syntax it is a completely different code than what is in the demo above. The lack of documentation makes it very frustrating to use the KendoUI. New features are great but if there isn't adequate documentation to support how to implement then many features will go unused. I hope you guys will take a serious look at the KendoUI Demo and documentation and consider making it an immediate priority to address.
Toolbar buttons have a toggle attribute available, but it should be extended to all buttons (stand alone and editor) as well.
It would be really nices to have the possibility to customize the kendogrid buttons icons (for example using Font Awesome) For example the Save changes and Edit changes button's customization is not supported
RTL support for the kendoui gantt widget
I hardly found 10-12 themes and none of it other than blue-opal looks good on UI. Please add some good themes.
The "Image Gallery" sample contains more than a nude picture; yes it is an art, but I think it is not suitable for many people including me, seeking for technical help or demos. Please keep this perfect technical site clear and focused. Yes, the image list is dynamic and the data source may be outside Telerik servers and control. http://demos.telerik.com/kendo-ui/aeroviewr/#photos/101426369 http://demos.telerik.com/kendo-ui/aeroviewr/#photos/101401175 Thank you for your great products, tools and samples.
Using the drawing API, we can draw on the chart itself for flexible annotations.
My grid with server side filtering returns 3 rows. But the returned rows are hidden by client side filtering. It shows no rows. For example: My filtering on server side returns 15 rows in two pages (pagesize: 10). But the client side filtering hides all rows but the single row satisfying the condition which is in the second page. So all records in the first page is hidden. In my opinion, all 15 items should be displayed. or the record satisfying the condition should be shown in the first page itself.
Kendo grid column custom command should either have option to pass template or have dataItem as default parameter along with jquery event. Currently cannot get the dataItem
Can you provide grails with kendo ui configuration steps
Stacked bar chart issue, undefined is shown in the series where a category data is not available among the series.
Sir, Do you have pivot grid like feature in kendo grid Thanks
You have datepicker. You have timepicker. Why not datetimepicker? A single input box that selects both a date and a time. Should be fairly straightforward, it just needs to display both ui widgets simultaneously and handle the different parsing in and output logic.
Would be nice with some sort of table support in the rich text editor. Normally we need a very stripped down RTE since it only represents a part of a page (a block), so the bells and whistles of tinymce are a bit overkill. However it seems that even though it might be difficult to use in an RTE due to complex UI, we often get questions regarding how to insert a table into a text. Not a complex table, but just a simple table with maybe a class, some th and td's. It would be really nice if we could stop integrating tinymce and just stick to one library, with a little more beefier RTE in Kendo UI. :)
I find myself having to define fields and columns multiple times for use in grids and data sources. It would be nice to be able to use a single structure that would work for both. The visible setting would control if the field is displayed in the grid or not. For example: _myColumns = [ { field: "Position.Name", title: "Position", width: 20, type: "string", editable: true, visible: false }, { field: "Headcount.value", title: "Headcount", width: 15, type: "string", editable: true }, { field: "FTE.value", title: "FTE", width: 15, type: "string", editable: true }, { field: "EmployeeName.value", title: "EmployeeName", width: 50, type: "string", editable: true }, { field: "JobCode.value", title: "JobCode", width: 20, type: "string", editable: true }, { field: "JobTitle.value", title: "JobTitle", width: 100, type: "string", editable: true } ] then, this can be used in $().kendoGrid( { columns: mycolumns } ) and the data source $().kendo.data.DataSource( { fields: mycolumns } ).