I have two grids on a scrolling div.
Each div is initialized via tables using the standard grid.KendoGrid({...}) method; however, only one of the grids is styled correctly.
What is missing or otherwise causing the style to fail? Thanks
I am prototyping this in the following jsFiddle: http://jsfiddle.net/raltman/wcD28/13/
<div> <table id="grid1"> ... </table> <table id="grid2"> ... </table></div><script> $(document).ready(function() { $("#grid1").kendoGrid({ height: 200, scrollable: false }); $("#grid2").kendoGrid({ height: 200, scrollable: false }); });</script>What is missing or otherwise causing the style to fail? Thanks
I am prototyping this in the following jsFiddle: http://jsfiddle.net/raltman/wcD28/13/
