I am applying some default sorting to table when it is being initialized with AutoGrid.
Is there way to add sorting?
I have tried to find the column and set the direction of the web component.
grid.querySelector(`vaadin-grid-cell-content:nth-child(${index}) vaadin-grid-sorter`)
.setAttribute('direction', 'asc');
Setting it like this triggers another load call which I want to avoid.