Hi It is possible to create a form layout with navigation toolbar to navigate between records? In windows application you can use textbox and other controls and bind this controls to datasource and use navigation toolbar to navigate between records. Also this form layout can design for master-detail layouts with grid widget or other widgets.
Please go through this thread. http://www.telerik.com/account/support-tickets/view-ticket.aspx?threadid=766782 Even if we are allowed to add additionalData in the Grid's Read method, that data is not properly passed on to the corresponding ViewModel on the MVC controller action. I had to write JS using the dot notation for objects and indexer for arrays to get it passed properly. My request is, if the additionalData is already json, allow it to be passed properly.
It would be awesome, if an automatic sanitizing of the ColumnName property would be implemented in one of the future releases of the MVC.NET. Reason: When binding a DataTable to the MVC-Grid and using client side pagination, a Javascript error occurs if any column inside the DataTable contains a character which is not allowed in Javascript variables (like spaces).
Currently, it's very difficult to set up a grid that has a calculated column, where the result is not editable by the user. It's pretty easy to set up a javascript function to calculate and update the value using `dataItem.set("Column", value)`, but this does not work if the column is not also Editable. Currently, you need to hack together some kind of text replacement for the Editor Template, and there doesn't appear to be a simple way to do this from the MVC wrappers. You can create a disabled or readonly textbox, but I'd prefer that it looks like those columns where Editable is set to false.
There is no reason it should use the default maxJsonLength; especially since it is inaccessible to change.
Nowadays, was promissed exporting Gantt to PDF. It is not working. Just prints what you see. It is very limited. Should allow: 1) option like "allPages" to print all Gantt Diagram in any page format. Making a "printscreen" of the visible gantt it is any solution for any project. 2) Export Gantt data to excel.
Of the highest priority, we desperately need file explorer for inserting and uploading images. In the AJAX editor, this appears to be build off the radFileExplorer control which is the other one we REALLY need for MVC which doesn't exist at all.
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).
ToDataSourceResult is very very slow on Large datasets - getting the Total Count is the issue, have an option to omit the total count or provide a way to inject the total count with some more efficient code.
You recently added a checkbox column feature to the grid control. However, you cannot control at the record level if that checkbox should be accessible. Every checkbox is selectable regardless of the data it represents. It would be nice to disable (or hide) the checkbox in the column based on some criteria in the record.
Create a PDF file viewer (like the one in WPF) so users can view PDF files in the web application. And can also control who can read, copy and/or print
The Upgrade Wizard should provide an option to only update currently used skins rather than adding all skins each time a project is upgraded.
Please add IntelliSense support for Angular directives in Visual Studio 2013 so this won't cause the 'green underline' error message. <div kendo-grid="myGrid" k-data-source="customerDataSource"></div>
Bundling the Kendo js files in an ASP.NET MVC application throws a NullReferenceException error. Reproduced with versions 2024.1.319 and 2024.2.514. The bundling works without exceptions in version 2023.3.1114.
bundles.Add(new ScriptBundle("~/bundles/kendo").Include(
"~/Scripts/kendo/2024.2.514/kendo.web.min.js",
"~/Scripts/kendo/2024.2.514/kendo.aspnetmvc.min.js"
));
Instead of kendo.web.min.js you can use kendo.all.min.js with the same result.
@Scripts.Render("~/bundles/kendo")
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
Workaround:
Use bundles.Add(new Bundle("~/bundles/kendo") instead of bundles.Add(new ScriptBundle("~/bundles/kendo")
No exception is thrown when bundling the Kendo script files.
Right now we when using both server and client binding have to write all templates (and details templates) twice, I really hope you can find a way to configure them the same way. Maybe the #= syntax can be parsed on the server or maybe, even better, the t => t.Column syntax could be translated to client code?
I think you should seriously consider a .Placeholder option for the Datapicker controls. Other controls like the ComboBox have this and it is a great pity that it is not available for the DatePicker as well. It would be nice to see something like "Please enter your birthday"
Add some demos/samples for using MVC with VB particularly where Lambdas are involved in the C# example which stops them being converted to VB using the online conversion tools.
As the DropDownListFor object has both a "DataValueField" and "TextValueField", i find it frustrating that the AutoCompleteFor object only has a "TextValueField. This makes it cumbersome to actually get the ID and make it part of the MVC model binding. Have a DataValueField would greatly simplify MVC model binding for the types of projects that I'm involved in.