When having a filter on a number, the only option to chose, is a NumericTextBox, which adds decimals to the number (very annoying). public enum GridFilterUIRole { Default = 0, NumericTextBox = 1, DatePicker = 2, DateTimePicker = 3, TimePicker = 4, } The only way to get rid of the decimals, is to ad some scripts that does this: function NumericFilter(e) { $(e.element).kendoNumericTextBox({ "format": "n0", "decimals": 0 }); } We need a IntTextBox option. Thank you.
The Save Changes and Cancel Changes are are always enabled. Make it so they are enabled if there are any uncommitted changes and disabled if not
Please add Favourites/Bookmark features in ASP.net MVC. This feature is available only in WPF Most of the websites would require this feature. I don't think none of the websites will be developed without this. I am not sure how this is been missed out in ASP.net MVC/Kendo.
today we need to loop through all rows in the Grid to do something in a row. On Telerik Extensions we had the OnRowDataBound event which we had the current row to do something.
ASP.NET MVC DisplayTemplates should by evaluated and take effect in Grid columns (see: http://www.telerik.com/forums/using-a-displaytemplate). Thus for custom formatting, defining a ClientTemplate() should not be required.
We can add option for No filter in filter selection , Is consumes less space then other
Hi, Mvc KendoGrid With ajax call is not working,it only returns Json.
If I have a splitter with two horizontal panes, the right pane will adjust, but the left pane will not. The pane splitter itself will not move, and does not allows the left pane to adjust. This often prevents a responsive page.
Illegal characters in path. ~/Content/kendo/fonts/DejaVu/DejaVuSans-Bold.ttf) format("truetype"
When using the NoRecords template that was just introduced in Q2 2015. If the grid has pagaing enabled, the NoRecords template appears below the paging row which looks awkward, since the grid is empty. It would be nice that if paging is enabled on the grid, and the NoRecords template is triggered, hide the paging row.
@(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.
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.
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
Kindly create samples for kendo dynamic tile view in asp.net mvc
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" } } },
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
When upgrading to Kendo MVC, the existing method renames the folder inside the kendo folder instead of the files. This method of upgrading applications breaks them every time. The MVC Bundle.config allows the use of the wildcard {version} for version changes. Why not use this system instead of the upgrade method you use?
Please add support for your own ORM in the MVC scaffolding.