I am trying to move a grid (that's styling is perfect outside of a tab) into a tab to make the most of some limited space.
My problem is the scrollbar within the grid now appears and I don't know how to get rid of it.
My code looks like
I have tried to set the height of the grid to different heights however always the same result.
Are grids supported within the tab control?
I have attached an image on the outputted html
My problem is the scrollbar within the grid now appears and I don't know how to get rid of it.
My code looks like
<ul class="mainnav hover-list submenu hidden"> <li id="liHome" class="first"><a href="/">Settings</a></li> <li id="liBusiness"><a href="/business">Product Setup</a> </li> </ul> <div id="tabstrip" style="height:400px"> <ul> <li class="k-state-active">Setup</li> <li>Products</li> </ul> <div> <div class="weather"> <p> Rainy weather in Paris.</p> </div> </div> <div> <div class="weather"> <table id="grid" class="products"> <thead> <tr> <th style="width: 40px"> <input type="checkbox" class="select-all" /> </th> <th data-field="name"> Name </th> <th data-field="sku"> Sku </th> <th data-field="tags"> Tags </th> <th data-field="AssociatedReward"> Product Assigned To </th> </tr> </thead> <tbody> <tr> <td colspan="5"> </td> </tr> </tbody> </table> </div> </div> <div class="clear"> </div> </div>I have tried to set the height of the grid to different heights however always the same result.
Are grids supported within the tab control?
I have attached an image on the outputted html
