I have a kendo-vue-grid like so:
<kendo-grid v-bind:data-source="loggedInUsers"
v-bind:sortable-mode="'multiple'"
v-bind:sortable-allow-unsort="false"
v-bind:sortable-show-indexes="true"
v-bind:height="250">
<kendo-grid-column field="username" title="Agent Name">
</kendo-grid-column>
<kendo-grid-column field="count" title="Count">
</kendo-grid-column>
</kendo-grid>
loggedInUsers
which is used as datasource in above contains elements like:
{ username: 'test', count: 1 }
.
My problem is that this loggedInUsers
array gets updated every five seconds and when it gets updated, all the sorting that is done on columns gets lost. Is there a way to preserve this sort settings?