Make the TreeList wrappers support the same functionality as the Kendo UI TreeList. Make the method Height support also string values
Just like RadRibbonBar - Telerik ASP.NET AJAX RibbonBar, populating it from xml. We need similar control for MVC. If similar solution exists can you provide me with some examples. Thank you
The documentation wrongly says that the grid will perform all server operations of paging, sorting, grouping, and aggregating whether bound to an iQueryable interface or a DataTable (http://docs.telerik.com/kendo-ui/getting-started/using-kendo-with/aspnet-mvc/helpers/grid/faq). It turns out, after an extensive support ticket, that the documentation is plainly wrong. I have been told that only the COUNT() aggregate is supported when doing server side operations and bound to a Grid. My request is that this gap in functionality should be fixed so that server operations work for both iQueryable datasources and DataTables.
In Kendo MVC Grid, the column of type Select() will be good if has an option to show/hide the checkbox in specific rows based on an expression. For example: .Columns(columns => { columns.Select().Visible(m => m.ShowSelect); }) Where "ShowSelect" is a property of my Model which is bound to the Grid.
Many widgets offer functionality to define a template (header, row, toolbar or whatever) by an id, such a way that the id refers to a html section that actually contains the template like: <script id="idOfSomeTemplate" type="text/x-kendo-template"> <!-- template contents --> </script> I use this a lot because it's easy to use and whenever the widget is part of another widget (common example: a grid part of a tabstrip) Razor /C# won't allow you to do nested inline markup blocks (@<text> </text>). With the above template it's possible to define the tempalte outside the nested inline block. Now it seems the MVC wrappers don't have the possiblity to do this for the grid toolbar template. TLDR: I would have expected this templateid method: @(Html..Kendo().Grid<T>() .Name("Grid") .ToolBar(toolbar => { toolbar.TemplateId("idOfSomeTemplate") }) )
Please consider adding charting capabilities to Pivot grid control.
Currently Jun 2014, when saving new data on hierarchy (parent/child) grid, there is no possible way to save the header data, get the pk of the header and pass the pk to child data and save the child data. I suggest to add a feature to auto save both parent and child data when user click save button when creating new data. Basically do ajax save for the parent, on success pass header's pk to do ajax save for child.
It would be nice to handle editor template directly in the grid's configuration. Very often we have to use a simple custom editor but we end up creating a new file every time. Html.Kendo().Grid<Model>() .Columns(cols=> { cols.Bound(m=>m.SomeProp) .EditorTemplate(@<div> Html.Kendo().ComboBoxFor(m=>m) [...] </div>); })
The jQuery dependency is defined as follows in the package .nuspec file:
<dependency id="jQuery" version="(, 3.7.1]" />
This causes the following warning to appear when installing the package in a project:
Telerik.UI.for.AspNet.Mvc5 2024.3.1015 does not provide an inclusive lower bound for dependency jQuery (<= 3.7.1). jQuery 1.4.1 was resolved instead.
The affected packages are:
Telerik.UI.for.AspNet.Mvc5
Telerik.UI.for.AspNet.Mvc5.Trial
Install the Telerik.UI.for.AspNet.Mvc5 package in a project and check the warnings list.
Warning:
Telerik.UI.for.AspNet.Mvc5 2024.3.1015 does not provide an inclusive lower bound for dependency jQuery (<= 3.7.1). jQuery 1.4.1 was resolved instead.
Add a lower bound (https://learn.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu1604) to resolve the warning about the jQuery dependency.
When using Html.Kendo().DeferredScripts() possibly bundle all the controls initialization in one single jQuery initialization function, instead of a call for each of the deferred controls.
Sometimes it is necessary to be able to define certain fields as editable during and edit but not create or vice versa. So, we should have the option to not show some of the model fields during edit and possibly not show a different set of fields during create.
For R# action annotations details please check the following link - http://blogs.jetbrains.com/dotnet/2011/12/providing-intellisense-navigation-and-more-for-custom-helpers-in-aspnet-mvc/ And regarding additional actions for url builders - usually I have the action which provides the data for the grids in the same controller so I would prefer to write "... .Read(read => read.Action("LoadSitesData", new { id = Model.StudyId })" instead of "... .Read(read => read.Action("LoadSitesData", "StudySitesAdministration", new { id = Model.StudyId })"
The Kendo UI for MVC project template creates a blank test project. It would be nice if it had default code generated like the standard MVC project templates do.
Make it possible to use custom names for the unit test and OpenAccess projects while creating a new Kendo UI for MVC project.
Hello,
Request/suggestion to enhance the scheduling functionality. For production environments, especially with long running processes the current setup is not sufficient.
See excel for an example of how this could work. Extension of current timeline to include a year. Would be best if multiple timelines could be defined creating more or less detail depending on choices.
The other axis to relate to the resource/asset where the work will take place.
Currently the scheduler works best for short-running activities. Displaying longer running activities is a challenge.
Given the release of ASP.NET and Web Tools 2012.2, is it possible to create custom project templates. It will be extremely nice if we can get editor intelligence with kendoui widgets when using plain JS, specially with the template engine. Some simple examples about this can be found at the end of thhis article. http://www.hanselman.com/blog/ReleasedASPNETAndWebTools20122InContext.aspx
I've downloded a free Kendo UI Trial. Unfortunately there aren't StockData.mdf in Template project. Can you fix this issue? I'm choosing component base for our company and it realy prevents me.
Hello community,
We would like to have the option / ability to apply accent insensitive filtering/searching for every control gives the ability to control, like grids, treelists, dropdownlists e.t.c.
For example, when using grid column filtering, if we have a data entry like 'Μόδεστος' in a column, we could retrieve this data entry by giving the following terms:
'μοδεσ' should return data entry, now doesn't
'μοδεστος' should return data entry, now doesn't
'ΜΟΔΕΣ' should return data entry, now doesn't
This case I am giving, takes cares only for " ΄ " accent diacritic, but should apply for all diacritic, e.g 'προϊόντων', should return by searching for term like 'προιον'
I believe that that should be the default case, such as now ignoreCase does.
Thank you,
AGGELIKI