What i think of it is converting checkboxes list into more friendlu UI element. For example we have list of checkboxes with the same name but different key Name="checkname[1]" and so on. So i set something like $(".checkbox[name=Checkname]").kendoCeckboxes() Then kendo convert it in to togle buttons. You can set how namy columns for example. And it will convert to something like table with every cell as toggle button and selected options are highlighted. Of course you do not use table html elemnt i just describe idea. This will be more friendly as on desktops as on tablets.
Having the ability to create "WYSIWYG Text and HTML Editor" would be excited.
Currently a datasource model field can have a "validation" definition, where each is treated as a validation rule. This allows for a custom rule to be added (e.g., a function to check the field value is not a duplicate), but there is no way to define the associated custom message - it would be nice if we could define "messages" to go with the rules (or maybe specify a validation object?).
Why don't add useful tips for paging? just like: http://demos.telerik.com/aspnet-mvc/Grid/Paging?theme=vista or jqgrid
I need to be able to filter grid items similar to how it is done in the ASP.NET AJAX controls where you can setup filtering for each column. I have made the Telerik ASP.NET Ajax Grid control to be 100% client side with virtual paging / filtering using Linq filtering on the client to server ajax calls. The Kendo Grid I think is almost there. I just need to be able to do filtering and then I think I will have the functionality that I have now.
Provide graph control that could display relations between people, objects, etc.
Add support for drawing box plots (aka box-and-hiskers). Include capability to display outliers.
Hi, We are working with HTML 5 and using KendoUI we noticed that many control (specially with popup like dropdown, etc.) are not compatible with HTML Responsive technique. What we want is that a dropdown, when see into a smartphone browser, use standard mobile input control and not a styled overlay popup.
It would be really nice to have slide out panels or drawers (not the same as the existing mobile drawer, but similar). The demo below shows a good example (left, right and top). http://responsivewebinc.com/premium/sheldon/sheldonadmin/index.html
Presently, widget zoom events are only triggered from the mouse scroll wheel. Please support zoom via touch input.
Now that Kendo UI 2016.1.* includes jQuery via the UMD wrapper, it would be great if that were the version of jQuery that was used. I admit that I find the many IIFEs difficult to read, but it appears that you've only included jQuery in the wrapper to ensure that it is loaded, and you don't assign it to anything. We'd like to be able to use jQuery.noConflict with all of our dependencies, and Kendo is the last one preventing that.
Is Multiple File upload possible in imagebrowser ? I would like to integrate upload (progressbar) with imagebrowser ?
It would be great if I could resize a widget to span multiple columns in the kendo sortable panel demo. http://demos.telerik.com/kendo-ui/sortable/sortable-panels
@Html.DevExpress().ComboBox( settings => { settings.Name = "comboBox4"; settings.Width = 180; settings.SelectedIndex = 0; settings.Properties.DropDownWidth = 550; settings.Properties.DropDownStyle = DropDownStyle.DropDownList; settings.CallbackRouteValues = new { Controller = "Editors", Action = "MultiColumnComboBoxPartial" }; settings.Properties.CallbackPageSize = 30; settings.Properties.IncrementalFilteringMode = IncrementalFilteringMode.StartsWith; settings.Properties.TextFormatString = "{0}"; settings.Properties.ValueField = "CustomerID"; settings.Properties.ValueType = typeof(string); settings.Properties.Columns.Add("ContactName", "ContactName", 130); settings.Properties.Columns.Add("CompanyName", "CompanyName", Unit.Percentage(100)); settings.Properties.Columns.Add("Country", "Country", 60); settings.Properties.Columns.Add("Phone", "Phone", 100); } ).BindList(ViewData["Customers"]).GetHtml()
Kendo not support in Chrome latest version. it get flickering Google Chrome is up to date Version 61.0.3163.100 (Official Build) (64-bit)
Make it easier to change the themes without having to recode all our CSS code. Many of us have already invested a lot of time in custom JQuery UI ThemeRoller themes for our applications. If we had a conversion tool that saved us from all the CSS recoding I would gladly drop UI and switch to Kendo ASAP.
When working with AJAX it's essential to be able to validate a form on the fly, return errors, and deal with them without needing to actually submit the form. Please make sure the validation library works as a callable method rather than just a form submit event binding.
Posted 1 hour ago (permalink) Another important thing for upload element is file list template. Somethink like <script id="template" type="text/x-kendo-template"> <div>#= filename #, [#= filesize#] <span class="menu"> <ul> <li>#= button_delete #</li> <li><input class="k-button" value="Insert into text" onclick="insert()"></li> <li><input class="k-button" value="Copy path to bufer" onclick="copy()"></li> </ul> </span> </div> </script> This way i can path either tmplate ID or template object and affect list of files. Because upload is a very important thing nowadays and usually require more options than just upload.
From: Cary Abramoff Date: 11/14/2011 6:11:04 PM Hi, I have a need to have multiple windows interact. The problem is, unlike your RadWindows for Ajax which will always be on top after receiving a mouse click, not so with the Kendo UI windows. I will explain. I open window A. Window A launches window B. Window B is UNDER window A. I have written JQuery to search for the divs with the k-window classes, find the title span, and set the z-index behaviors I want but this is not as elegant as the behavior of your own RadWindows in the Telerik Ajax suite which I use on my other big ASP.NET project. I believe your windows need to do 2 things for official v1 release. A- Minimize B- Whenever a window receives focus it should have the highest z-index. Thanks!! Cary