Hi,
The `alwaysVisible` option is ignored when we have an external DataSource.
Consider the following code:
```
var dataSource = new kendo.data.DataSource({
pageSize: 2,
data: [
{ name: "Jane Doe", age: 30 },
{ name: "John Doe", age: 33 }
]
});
$("#grid").kendoGrid({
columns: [
{ field: "name" },
{ field: "age" }
],
});
var grid = $("#grid").data("kendoGrid");
grid.setDataSource(dataSource);
grid.setOptions({
pageable: {
alwaysVisible: false
}
});
```
Here, since the `pageSize=2` and we have `2` records; I don't expect to see not the pagination and other pager options after `alwaysVisible` is set to `false`.
However, I do see them since `alwaysVisible` is completely ignored.
When I move the datasource back inside the `$("#grid").kendoGrid({})` everything works as expected.
Please let me know if this is an bug or I have mistaken in understanding something about the options.
Thanks,
Ajay
Chart series labels template to include html elements. At the moment, adding HTML elements in a chart series label template is possible but you cannot do anything on those elements. Would be nice to be able to re-template the labels by adding HTML elements in them and be able to design these elements or attach events to these elements.
Being able to trigger actions in other modules of one application is important. Also, good design principles dictate that tight coupling of modules is not good. In order to allow various modules to communicate with each other some sort of pub/sub or event routing framework should be implemented. The Observable class is can be used as a starting point. This new class should be tied to the presence of a DOM element. This should be similar to how AngularJS handles events with $broadcast, $emit, and $on. This could also be similar to the schemes describe in the below links: https://keestalkstech.com/2016/03/strongly-typed-event-handlers-in-typescript-part-1/ http://www.wintellect.com/devcenter/jlikness/building-a-javascript-event-aggregator-using-typescript
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
When you mouse over notes would like to be able to show tooltip with some additional detailed information
It would be great to have a Widget that allows you to bind keyboard short cuts to a normal HTML element such as a Button or really an other element. Additionally upon init, this widget would check for conflicts against other shortcuts provided by Kendo UI and provide the developer an exception explaining the conflict.
Currently to show the HTML View of Kendo Editor with indents, you need an external JS. This would be nice to have out of the box.
By design chart selection is supported only for categorical charts (bar, column etc.) but not for XY-charts (scatter, scatterline etc.). I'd like a similar UI for scatter charts to enable you to select data from the chart especially when the x axis is a time line.
Range area and column A detailed description of the problem to the link: http://www.telerik.com/forums/range-area-and-column
Be able to show an empty marker when the value is 0 for the sparkline like in this demo: http://dojo.telerik.com/@tsvetomir/ogiH/2 The demo use a hack to show the marker but it would good to have a real solution.
If the ranges can be more leveraged more information can be visualized in a single gauge and it allows for creating "custom bars". The pointer value already accepts a margin. Example: scale: { majorUnit: 20, minorUnit: 5, max: 180, ranges: [ { from: 80, to: 120, color: "#ffc700", margin: 10 }, { from: 120, to: 150, color: "#ff7a00" }, { from: 150, to: 180, color: "#c20000" } ] }
Can you please add support different scales in radar charts for the different categories/axes? The radar chart becomes mostly useless when, e.g., one category has values that range from 0-10 and another ranges from 0 to 1,000,000.
When changing the bounds of a shape, especially changing the X & Y position allow the new value to be set with animation.
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.
Base units for chart include Months, Day, Year etc but there is no support for Quarter. This causes gaps on the chart when displaying quarterly data.
In the current implementation of the widget, when user tries panning or zooming, there are not map tiles transitions. You just see some white squares until the new tiles are rendered. It would provide a better user experience to have some sort of transition in those interactions.
The linear gauge becomes cutoff at certain heights. If it's less than 50 pixels more and more features are cutoff. I'd like the linear gauge to be able to be 10 pixels without a cutoff.
It should be nice if we could set a background color using a gradient for DataViz area charts.
It would be great if there are customization of categoryAxis label when ploting has both +ve and -ve values. The label need to be settled down at bottom (base line) automatically when there are negative values and same for +ve values.
Hi,
When I call grid.datasource.sync() on a datasource that has a model id defined, but this field is unmapped, I get a cryptic error. You can find a reproducer here: https://dojo.telerik.com/iLacazot
Uncaught TypeError: o is undefined
setup http://127.0.0.1/a/kendo-ui/js/kendo.all.min.js:28
create http://127.0.0.1/a/kendo-ui/js/kendo.all.min.js:28
_promise http://127.0.0.1/a/kendo-ui/js/kendo.all.min.js:28
Deferred jQuery
_promise http://127.0.0.1/a/kendo-ui/js/kendo.all.min.js:28
_send http://127.0.0.1/a/kendo-ui/js/kendo.all.min.js:28
sync http://127.0.0.1/a/kendo-ui/js/kendo.all.min.js:28
<anonymous> http://127.0.0.1/a/program/discount/search/:4058
On a slightly related subject; When checking the docs on the model id it seems that the example is missing from this page:
https://docs.telerik.com/kendo-ui/api/javascript/data/model/fields/id