Is it possible to add a Outlook "Preview Row" functionality in the next release please? see https://demos.devexpress.com/MVCxGridViewDemos/Rows/Preview robert
It would be nice to have option to bind ComboBox to data on client (javascript array). In case you have 2 ComboBoxes using same list of items, combos call server method 2 times.
At present to get the nice kendo checkboxes you need a checkbox followed by a label, you can't do this in asp.net mvc because @Html.CheckBoxFor(x => x.IsEnabled) renders as: <input id="IsEnabled" type="checkbox" value="true" name="IsEnabled"> <input type="hidden" value="false" name="IsEnabled"> The solution is to use the kendo mvc dll, or possibly just make your own, but it would be much easier if the kendo ui code could just ignore the hidden input, or if the two controls could be linked via 'for', 'data-for', 'data-whatever'
In the declaration of my Kendo Upload Controller i want to be able to specify a different button or anchor to throw the Upload Event.
It seems that the default behavior of the control is to set autocomplete="off". When setting using the .HtmlAttributes method int he MVC wrappers and setting autocomplete to something else this setting is ignored. I propose that the HtmlAttributes method should adhere to all settings that are passed into it. Example using the MVC Wrappers: html.Kendo().MaskedTextBoxFor(e).Mask(mask).HtmlAttributes(new { @class = "form-control", autocomplete = "tel-national" })
Expanding (or at least re-requesting) the improvement requested here http://kendoui-feedback.telerik.com/forums/127393-telerik-kendo-ui-feedback/suggestions/2245003-provide-visual-studio-intellisense-support-all-aro as I dont believe "all around" was delivered at Q2 2012. The many attributes and control tags that kendo supplies is not in intellisense in the HTML pages as you write them, angular does it so I'm fairly certain it's doable for Kendo too...
Buttons can be added to the toolbar as Enabled(true/false), it would be consistent to have the same option for Visible(true/false) Currently the visibility can be changed via the API button.hide() or button.show(), however, not when initializing the toolbar using the MVC wrapper
I'am looking for an event like "onDeleting" in my multiselect box, so I can confirm it or not. The current "onChange"-Event triggers to late.
The serialization of a grid should be more lightweight. Texts are serialized multiple times - for each column and in case of several grids on a single view all texts are serialized many times. The serialization of "standard-texts" can be optimized: "filterable": { "messages": { "info": "Zeigt Zeilen mit Werten, die", "isTrue": "ist richtig", "isFalse": "ist falsch", "clear": "Löschen", "and": "Und", "or": "Oder", "selectValue": "-Wählen Sie-", "value": "Wert", "cancel": "Abbrechen" }, "operators": { "string": { "eq": "Ist gleich", "neq": "Ist nicht gleich", "startswith": "Beginnt mit", "endswith": "Endet mit", "contains": "Beinhaltet", "doesnotcontain": "Beinhaltet nicht" }, "number": { "eq": "Ist gleich", "neq": "Ist nicht gleich", "gte": "Ist größer als oder gleich", "gt": "Ist größer als", "lte": "Ist kleiner als oder gleich", "lt": "Ist kleiner" }, "date": { "eq": "Ist gleich", "neq": "Ist nicht gleich", "gte": "Ist nach oder gleich", "gt": "Ist nach", "lte": "Ist vor oder gleich", "lt": "Ist vor" }, "enums": { "eq": "Ist gleich", "neq": "Ist nicht gleich" } } },
Kindly create samples for kendo dynamic tile view in asp.net mvc
Kendo dropdown doesn't return correct selected index when scroll down "on next page"(scrolling view) and select there value. DDl shows correct text, bud index is incorect
Imagine situation that you have 10 separate solutions - different software. In each you use Kendo library. If you want to update to the latest version you need to update in each project separately. How would you resolve such a issue instead of updating only one common project? Please add such a functionality.
It would be great to be able to dynamically add Multi-Header columns in grids. Something similar to this http://stackoverflow.com/questions/30808655/dynamic-multi-header-column-in-kendo-mvc-grid
Please implement more Grid-parity features for the TreeList widget. Unfortunately, the filter for enum values shows only a numeric up/down on a TreeList. Change this behavior to match the Grid filter: here, enum values are shown with their textual representation (and, if provided, the [Display] attribute is evaluated).
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);
There should be capabilities to group parent resources to selected child resources Currently the Scheduler groups all child resources under each parent resource. Example Resources: Parent resources: New York Tennis Club, California Tennis Club Child Resources: Court 1, Court 2, Court 1, Court 2, Court 3, Court 4 Currently the Scheduler groups parent and child resources as: - New York Tennis Club is grouped with Court 1, Court 2, Court 1 and Court 2, Court 3, Court 4 - California Tennis Club is grouped with Court 1, Court 2, Court 1, Court 2, Court 3 and Court 4 I would like the capability to group parent resources with selected child resources, in my situation im trying to achieve this structure of grouping: Desired Grouped Resources: - New York Tennis Club is grouped with Court 1 and Court 2 - California Tennis Club is grouped with Court 1, Court 2, Court 3 and Court 4. If you look at the Syncfusion Scheduler, they have this feature, it would be nice if the Telerik/Kendo Scheduler could do this.. If you look at the link i provided below, you can see that the Syncfusion Scheduler allows multiple resource groups which has the capability to group parent resources to selected child resources. Syncfusion Scheduler Demo shows: Room 1 is grouped to Nancy and Michael Room 2 is grouped with Steven http://mvc.syncfusion.com/demos/web/schedule/resourcegrouping
It could be convenient to have the editor templates directly added to the solution (in Views\Shared) when deploying the ASP.Net MVC nuget package.
@(Html.Kendo().TabStrip().Name("dashboardTab") .HtmlAttributes(new {@class = "fullHeight"}) I need that css class applied at the outermost element rendered through the TabStrip. Otherwise there is no way to modify a controls appearance using css only without wrapping every single tabstrip in a container for the sole purpose of accessing it with css.
When converting a WebForms app with KendoUI controls in it to MVC, I used the MVC wrappers. One thing that became very apparent is the lack of support for client templates. For example, a bound column has a ClientTemplate, but no ClientEditorTemplate or ClientHeaderTemplate. Because of this, extra JS code has to be written to manually manipulate different parts of the grid. Considering the MVC Wrappers render out the same HTML/JavaScript as the pure JavaScript counterpart, it would be EXTREMELY helpful if client templates were made available anywhere a server-side template exists.