I have a Kendo Grid that is placed on a page and it spans on the whole visible page (width and height). If there's too many rows, grid shows a scroll bar.
But when I place the grid inside a Kendo TabStrip (with height 100%), the grid's height becomes unlimited, the scroll is not shown and rows outside the page are not visible (cannot be scrolled to).
How to limit the grid to tabstrip's height?
The problem was tricky to find. It is a problem with TabStrip or rather TabStrip vs Grid problem.
Grid always adjusts its size to the container's size. TabStrip's Tab always adjusts to the content.
There are 3 steps to solve it:
Sample page code:
JavaScript code:
(The code above is not production ready).