Hi,
I am using the kendo UI Grid
inside the a flexible container. And I want the grid to be auto
adjustable according to the available space in the container.
I am able to achieve this behavior
by making some changes in the CSS for grid, I am using the following CSS to
achieve this behavior.
.grid-auto-adjustable {
margin: 0;
padding: 0;
height: 100%;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: space-between;
align-items: stretch;
}
But the issue is when we are using
Frozen columns. Because of above CSS change (auto-adjustable) we
are not able to use Frozen columns feature.
Can I get a sample code with Auto adjustable height and having Frozen columns inside the flex container.
Thanks in advance.
Regards
Chenna Basappa C