You refer to Kendo UI Premium Forums in your FAQ and web site, but post no link to this so I cannot find it! I am a paid up customer and want proper support like other Telerik products.;
Replace de default browser scrolle bar in container widgets like splitter or panel bar
Right now, the scrollbars of the scrollwrapper widget only show up if the user actually starts scrolling. However, there are circumstances where the user might not be aware that the content is actually scrollable. Two examples: The content of the scrollwrapper contains a lot of whitespace/background such that the user sees whitespace at the end of the scrollwrapper box and is not aware of overflowing content. The scrollwrapper does not contain continuous text but a list and the visible content ends right after a list item -- the user might not be aware that there are subsequent list items hidden in the overflow. Thus I suggest to add a configuration option to the scrollwrapper widget which makes both/the horizontal/the vertical scrollbar permanently visible to inform the user about overflowing content.
Please give some good Red color out of the box theme. Currently there is no good theme. All are ble/black/gray.
I would like to see the examples and documentation for the AngularJS integration appearing on the main Kendo UI site. Also this implies that AngularJS should be given greater priority and the integration library should be officially supported.
When a dataviz chart is bound to a series that contains null points (for example if no data exists for a particular item on given column in data model), hovering over that series in the legend causes an error in the DataViz pointsBySeriesIndex function. A workaround is to edit the source JS function, adding a check to see if points[j] is undefined. Is it possible to fix this in future releases?
Please support the HTML5 History API and stop using URL fragments for both general use and SPAs. URL were, and always will be, a hack (although necessary previously) and there is enough support for the History API now to move to it. Even Facebook is using it, so there can be much concern for support. :-)
hi telerik It would be great to have a calendar view similar to http://www.almanach.free.fr/ and the ability to add task to a day.
Example URL: http://jsbin.com/elutuz/4 The second tab (Sales) has data-stretch="true" set for its view. This appears to throw an error that breaks the drawer for that view.
It would be good to have possibility to put button groups into multiple lines. Like Jquery Mobile. There is offeten to few space and too many buttons to fit them without multiple lies.
I implemented the Kendo Scheduler widget in a Kendo Window today. The events of the scheduler did not show any resizing handles on hover. It showed up that this problem is caused by a CSS style in kendo.common.min.css stylesheet where one is applied to .k-window .k-resize-handle (opacity and font size set to zero). Just a little bug, but it took me some time to figure out the cause..:)
Hi. I find bug in StockChart version 2013.2.716 (2013.2.626 is ok): $("#stock-chart").kendoStockChart({ dataSource: { transport: { read: { url: "boeing-stock.json", dataType: "json" } } }, title: { text: "The Boeing Company (NYSE:BA)" }, dateField: "Date", series: [{ type: "line", field: "Open", name: "Open", }], navigator: { series: { type: "area", field: "Close" }, select: { from: "2000/01/01", to: "2010/01/01" } }, categoryAxis: { ... } }); [ { "Date": "2000/01/03", "Open": 41.62, "High": 41.69, "Low": 39.81, "Close": 40.12, "Volume": 2632000 }, { "Date": "2000/01/04", "Open": 39.88, "High": 41.12, "Low": 39.75, "Close": 40.12, "Volume": 3584700 }, { "Date": "2000/01/05", "Open": null, "High": 43.31, "Low": 41.38, "Close": 42.62, "Volume": 7631700 }, { "Date": "2000/01/06", "Open": 42.25, "High": 43.44, "Low": 41.12, "Close": 43.06, "Volume": 4922200 }, { "Date": "2000/01/07", "Open": 43.88, "High": 44.88, "Low": 43.69, "Close": 44.12, "Volume": 6008300 }, ... ] I set line series type and json data have null value.
Provide a product migration guide from your sister products (e.g., silverlight controls, radcontrols) which presents use cases such as: "If you have a asp.net radgrid such as... you could do the same task similarly with KendoUI by..." Having complementary examples implemented using your various product types instills a bit of confidence that interfaces created in one environment could potentially be emulated or duplicated in another. With maybe some best practices or "known gotchas".
Listviews are great tools and the drag and drop feature works well. But it would be great to be able to reorder items in a listview
Have a way to be able to save Kendo charts via a server API so that the the charts can be saved without having to view them in a browser. This would be useful for something like adding charts to generated pdfs. This functionality is already available for ASP AJAX Charts. Thanks
There should be a textbox bindind to a field available.
Currently templates for editing are just supported in the Popup mode. In many cases we need to change whole row in the Inline Editing mode. In this occasion when the user pressed Edit button in the grid, all columns will be vanished and we are able to render a template with different controls and functionality.
Using the following example project for a multiselect in a Grid: http://www.kendoui.com/code-library/permalink/boByv66aG2OF1P8AAFTdxQ Failure steps: 1) Run the project as-is. 2) Edit any grid line. 3) Add a Territory by typing the first few letters and pressing enter to select the highlighted item. 4) Save the grid line Issue: In the Update action, the ModelState is not valid and the Territories list in the EmployeeViewModel has null entries for the first X items (equivalent the the number of items existing before the update). The data POSTed from the grid seems to be inconsistent. New items are posted as TerritoryViewModel-type objects but the existing items are posted as the value (id) only. Note: Adding at least one item by clicking with the mouse magically resolves this issue and all items are posted as complete objects.