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.
Steps to reproduce the bug 1) create a grid that uses “In Cell” editing and have a validation on a cell (in this example i will use a required field) 2) click in the required cell 3) click out of the required cell to cause the validation error to fire 4) click back into the cell which had the validation error 5) press escape 6) click into a different cell and enter a value 7) click out of the cell This will cause the cell the be edited but it will not be marked as dirty!!! The issue is that multiple submit handlers are getting assigned to the form I’ve updated the following to remove submit handlers after submit has been called. I made a change to the telerik.grid.editing.min.js file to resolve the issue. setting the submit handler to null after submitting the form seems to do the trick _validateForm: function (n) { var o = this.form(); if (o.length) { var p = o.validate(); if (p) { this.validate(); p.settings.submitHandler = function () { n(); p.settings.submitHandler = a.noop }; o.submit(); p.settings.submitHandler = null; } } },
Is there any plan to provide WEB API server wrap? If so, we can use it in web and mobile at the same time.
If you have multiple axes shown on a chart it can be hard to determine which axis relates to a particular data point. Currently you can use color to visually tie them together (see http://demos.kendoui.com/dataviz/bar-charts/multiple-axes.html) but this isn't a great solution. What would be nice is an option to highlight the appropriate axis when you hover over a data series point (similar to the new feature where data series is highlighted when you hover over the legend)
The PanelTab of KendoUI can be integrated into KendoUI mobile. But it does not work smoothly. It would be very nice to get a new widget which is optimized for mobile platforms.