It would be very useful that the Kendo Map widget provides out of the box a control (some sort of dropdown or list view) that allows to select a layer. This would be great for scenarios where the user wants to see a different layer of the map. For example, when the user needs to switch from an Street view to an Aerial view. This feature is very common in Map controls. So I think, it's something that should be supported by this widget, too.
For setters in general this shouldn't cause any trouble to return the widget so I could perform more things with it. For the get-set functions (like value() etc..), if I get a parameter this means I'm using it as a setter hence I might want to do something else with the widget later on... "Chainability" jQuery style. A small code snippet to illustrate: //the datePicker is already in place and has been initialized somewhere else //I would like to be able to do this: datePicker = $("#aDatePicker") //jQuery Selector .getKendoDatePicker() //retrieve the picker .setOptions(dpOptions) //set new options .value(aDate); //set the current date //Instead of this: datepicker = $("#aDatePicker").getKendoDatePicker(); datepicker.setOptions(dpOptions); datepicker.value(aDate); Regards Carlos A Luengas
[a] On paste [1] If pasted text contain email/url then convert it into link. [b] On typing using keyboard in editor [1] If Email is typed in editor then convert it into email link (href should contain mailto: attribute). for example if you type abc@pqr.com then its link should be like (<a href="mailto:abc@pqr.com">abc@pqr.com</a>). [2] If URL is typed in editor then convert it into URL link.
Need to have simple textbox (input) widget
Having a character counter for textbox & textareas gives users nice little heads up as they start typing to summarize the text for a fixed length. Not sure about internet applications but its becoming more & more a requirement in business applications. Please give it a thought.
Since Kendo grid is not a responsive widget, provide a option for users to hide lesser significant columns on smaller screens. Let user specify the property "HideWhenLessThan" for a column in the grid, which represents the width of the screen below which the column is hidden in the grid. Example: columns: [{ field: "ContactName", title: "Contact Name", HideWhenLessThan: 600 }] Here the column would be hidden when the width of the grid's parent div or the width of the browser is lesser than 600px.
Since the "workbook.columns[0].width" exists when exporting to Excel AND that the mix of cell.colSpan and cell.wrap doesn't change the row height automatically when the text wrap (it only works when colSpan = 1) I'd like the ability to change the row height manually : rows[0].height = 50 Of course the best implementation for us would be the automatic row height calculation when text wrap with colSpan > 1. Thank you !
Similar to the Funnel chart, some chart libs also offer a Pyramid Chart. We are also interested in the Pyramid.
I have short list of things that are either broken or not implemented. 1) Merging cells with formulas causes them to disappear (Big Bug) 2) Named Cells (Aliases) don't exist like in Excel (Limitation) 3) Changing row height causes bizarre effect where active row no longer lines up with row number (Bug) 4) Can not hide worksheet or create readonly cells (Limitation)
Hello Kendo-Product-Team, there is this create library called xeditable which basically makes it easy to add edit functionality to a details-view. Have a look here: https://vitalets.github.io/x-editable/demo-bs3.html I think this would be a super addition to the kendo framework. In a typical business application you have a grid with the list of all products and when you click on one product you have a nice details page. Currently if you want to edit the product the user needs to go to a special edit form. With xeditable it is possible to add the editing capability directly into the details page. It's nice and easy for the user (less clicks) and it is easier for the develope (no extra edit form to build). I also think that it would be easy to do such a thing for you as you already have the controls and the framework. Thanks Andi
<input data-role="maskedtextbox" data-bind="value: ip_address" data-mask="000.000.000.000" /> The problem is that if you don't use all digit places, you have to put a zero (192.168.002.100 vs 192.168.2.100). I would like there to be a max number of characters (3) in-between the periods.
The possibility to group line series stack in Chart.
How about showing a list of tables or views available to End user so that End user can Query on those and get his expected output as a result or Report
Our business partners would like to be able to have gradients as part of the radial gauge color bar. Similar to the following: http://i.imgur.com/DWfxi53.png
Add legend icon as per series type when use series type area then show area icon on legend when use series type line then show line icon on lagend
So that the dates are still visible when a user scrolls down through the resources.
Can you start to support jQuery 3.x.
It would bei nice if the gantt would support Auto Height like Grid is doing and is only rendering the Height for the used elements, when you define no addiotional height property.
I am trying to find why some Kendo UI controls do not work, and do nothing at all. No error, just flat do not work and don't give any clue about why not. Was told about this extension for chrome? great. Installed and... ? now what? there is a Kendo icon in the upper right, ok let me click that. it opens the "store" to get extensions of all sorts and types and says the kendo inspector tool IS installed. ok, and..? if I look at page source? nothing different. How this tool is used is not obvious. So put instructions of how to use it somewhere?
The listview endless scrolling is a neat feature but it will be good if we could configure it to be in reverse. We are building chat system in our app and want to have the endless scrolling widget but need it to scroll in reverse.