Hi,
I'm using the ListView control to create a Heatmap and it's working perfectly, except I'm trying to limit the height of the control to 250px, but setting "height: 250" doesn't do anything. I'm not used this control before and I know from using the grid this would work.
Currently I'm loading in about 500 items and it's making the whole page scrollable, but I want to have the control scrollable within it's own div (just like the Grid control). BTW, I don't want to use paging.
HTML
Template
JQuery
Can someone please help?
I'm using the ListView control to create a Heatmap and it's working perfectly, except I'm trying to limit the height of the control to 250px, but setting "height: 250" doesn't do anything. I'm not used this control before and I know from using the grid this would work.
Currently I'm loading in about 500 items and it's making the whole page scrollable, but I want to have the control scrollable within it's own div (just like the Grid control). BTW, I don't want to use paging.
HTML
<div id="heatmapView"></div>Template
<script id="heatmapitem-template" type="text/x-kendo-tmpl"> <div class="heatmapitem" style="background-color: rgb(${HeatMapColour})"> <h3>${Symbol}</h3> <div>${kendo.toString(Percent,"p2")}</div> </div></script>JQuery
$("#heatmapView").kendoListView({ dataSource: { transport: { read: { url: ("http://www.getsomedata.com"), dataType: "json" } }, batch: true }, height: 250, template: kendo.template($("#heatmapitem-template").html())});Can someone please help?