I have made a kendo grid using the following code:
<kendo-grid v-bind:data-source="getEscalations"
v-bind:sortable-mode="'multiple'"
v-bind:sortable-allow-unsort="true"
v-bind:sortable-show-indexes="true"
v-bind:height="250"
v-bind:resizable="true"
v-bind:sort="sortEscalationTable">
<kendo-grid-column field="xxx" title="XXX">
</kendo-grid-column>
<kendo-grid-column field="yyy" title="YYY">
</kendo-grid-column>
</kendo-grid>
the problem is that columns get misaligned when window is resized. I have to refresh the window to resize them again. Is there a flag or other way to keep them aligned on resize. Please take a look at the image. Thanks.