Currently for the Window and Tooltip controls (possibly others, but those are the ones that I'm working with), the Height and Width properties are both integer properties which set the height and width in pixels. I would like the ability to be able to enter Height and Width in 'em' units, much like can be done with the grid column widths.
Hi Telerik Team: I have some suggestions 1.- Add Scafolding for TreeList UI for ASP.NET MVC 2.- Add Cell Edit with template for TreeList UI for ASP.NET MVC Thanks
Create: Html.Kendo().Grid() .ToolBar(commands => commands.Create(Model.EnableCreate)) where EnableCreate is a bool. Next is Edit and Destroy: columns.Command(commands => { commands.Edit(item.EnableEdit); commands.Destroy(item.EnableDestroy); }) where item is the dataitem of the row and EnableEdit and EnableDestroy is bool properties.
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" })
The current Kendo UI Grid does not offer support for external form editing of Grid records. But competing companies offer support for this already as follows: http://demos.devexpress.com/MVCxGridViewDemos/Editing/ExternalEditForm It would be great if the Kendo UI Grid also offers this functionality.
In Kendo editor Add lines of text with and leave gaps in between lines Try to copy text by selecting all text All empty line breaks are erasing itself and left only texted lines but not empty lines This behaviour found only in 2017 release You can find this behaviour even in kendo edito demos
I think it would be more useful to scroll to the first scheduled event on the day view rather than show an empty morning if there are only scheduled events in the afternoon. The month view does not show times, so when a day view is selected the user expects to see their meetings rather than having to scroll down to the first event.
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.
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>
need a week number functionality in Kendo datepicker
There is no reason it should use the default maxJsonLength; especially since it is inaccessible to change.
The Telerik MVC wrappers do not innovate at the same pace as Kendo UI Proper. They are missing attributes and actions that are available in the javascript versions, and it is plain to see that some features will be added when you guys "get around to it". It would be so much better for customers if you guys would post the code to the Telerik organization on GitHub, and make it private, then allow customers to sign CLAs and have access to the source. That way, those of us (like myself) who have added new features and are maintaining their own branches internally can submit PRs to add our own value to a product we pay a heck of a lot of money for. I personally would be able to close at least 5 requests on this forum from submitted pull requests, just in work I've already done. Thanks for your consideration.
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.
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).
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.
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.
There is No Model Binding feature available for DataTable.ToDataSourceResult() Function, Implementation of this feature makes Kendo UI much interesting.
Right now a master grid can be configured in code using the GridBuilder, but the detail grid needs to be configured in a template and a whole lot of Javascript. As it is much easier to prevent errors writing (and compiling) server side code using the GridBuilder than using large parts of Javascript. In the good old MVC Extensions there was a method DetailView(detial => detail.ClientTemplate(MethodToCreateDetailGRidUsingGriudBuilder()) I would very much like the same approach in Kendo UI as it provides a more robuste method of building Detail Grids.