Great suggestion. Currently I have to add @class="k-texbox" for every TextboxFor.
KendoUI MVC Serverside wrappers should allow exporting grid data to PDF, Excel and CSV. While this has been asked for before, what I am asking is that this feature be part of the KendoUI complete with server side wrappers so that this is no longer just a limitation with the client-side framework. Every business application we have with grids requires the ability to export in PDF, Excel and CSV formats.
Ponder? its a basic usability Feature, Kendoui is supposed to be all about usability, surely this is Ponder? There should be a standard (easy/inbuilt) way to show that a grid data source has no records because that is the default opposite to a populated data grid. at the very least if data is empty then show "nothing" all mine does is leave the spinning ajax wheel running forever, so end users does not know, this means i have to write extra code just to implement this, so please consider this "feature"
It would be great to have the ability to have to conditionally set behavior for columns and buttons. On a Grid with this: .Columns(columns => { columns.Bound(b => b.IsEditable).Hidden(true); columns.Bound(b => b.Id); columns.Bound(b => b.Description).Width(200); columns.Command(c=> { c.Edit(); }); }) Today if I want to hide a button depending on a cell value I need to do it on databound event. It would be great to have the option to set something like: command.Edit().Display(p => p.IsEditable); For a column, it would be nice to have something like: columns.Bound(b => b.Description).Width(200).Editable(p => p.IsEditable);
Since the new grid only works with kendo validator, it is important to support all the same jquery validate features that work seamlessly with MVC. The old telerik grid worked just fine with remote validation.
Currently it is not possible to define a DataSource using ASP.NET MVC wrappers and assign the same shared DataSource to a Grid and Chart control (common scenario for reports where you want to visualize the data in a small chart above the grid). The only solution currently is to make two separate calls to the server (and define the two identical data sources twice) which is fairly expensive in a reporting scenario where there's more data that needs to travel across the wire sometimes instead of simple CRUD/transactional scenarios...
Option to change button type (like in Telerik MVC) columns.Command(commands => { commands.Edit().ButtonType(GridButtonType.Image); commands.Delete().ButtonType(GridButtonType.Image); })
The Q2 release added MVC wrappers for Kendo UI and Kendo Dataviz. Is there a plan to release wrappers for Kendo Mobile
I'm using EF6 in my project, so I can use Async/Await on all methods. My question is: could you add a ToDataSourceResultAsync method? Inside, you could call CountAsync and ToListAsync.
Just like posted here (and declined) : http://kendoui-feedback.telerik.com/forums/127393-kendo-ui-feedback/suggestions/3844570-serialization-support-of-datasourcerequest-and-app I would like to see a portable separate assembly that : - can be referenced both on ASP.NET MVC side and WCF server side. - A DataSourceRequest and DataSourceResult class that serialize well in both SOAP and REST WCF. Referencing Kendo from the Application server side also requires references to System.Web.Mvc, Razor pages, ... and others that shouldn't be necessary.
It´s the only missing pice of this great framework. I really hope for it in a near feature.
We want to generate PDF files with the grid configuration, i.e. with aggregates, grouping and basic formatting options; expecting can generate an appearence very close how the grid are presented. Thanks.
Create a breadcrumb trail like horizontal navigation on top of web page below headers which will provide a hierarchical site structure. Typical breadcrumbs looks like: Home page > Section page > Subsection page
Support drag and drop in the MVC Wrapper for the Kendo Grid. 1. Be able to drag and drop rows within the same grid to change the order of the rows. 2. Be able to drag and drop rows from one grid to another. 3. Support multi-selectiong of rows and dragging and dropping them 4. Customize drag and drop events for the grid. Example: When dragging rows from one grid to another, be able to modify the drop functionality.
An organization (or more preferable a flowchart) chart like the one in Telerik ASP.NET Ajax suite
Grid should have facility to set timezone from server side(like Scheduler). Rather than display dates in client side timezone.
I hope, for the grid's custom/template popup editor, you guys can include a footer section at the bottom of the window, and allow us to choose to align the buttons left, middle or right. Right now there's no separation for these buttons. It blends right in with the rest of the editor, and the buttons are default floated to the left. It can even be as simple as that, a greyed area at the bottom, just to indicate some separation between the body and "footer" Like this: http://twitter.github.com/bootstrap/javascript.html#modals I hope this can be applied to the window component as well Right now I have to completely implement my own custom popup/modal window because this isn't supported.
Currently when a grid is bound to a model with related objects and properties via JSON, the grid will only parse the top level object types and treat and related properties as generic objects hence dates are not dates anymore, etc. Please consider having the grids parse related object properties and data types so there isn't a need for flattened ViewModels in order to properly visualize related data and be able to filter and sort it correctly.