In Hilla autogrid, I am using DataProvider for lazy loading data.
Is it possible to call
autoGridRef.current.refresh() without clearing the data first?
Something like using items={itemsSignal.value} on AutoGrid.
Update the itemsSignal and call refresh. This does not clear the table data, just updates it kindof like standing redraw.
But when I do set items option on AutoGrid, it does not trigger service.list method when autoGridRef.current.refresh() is called.
I am using column filters, so I rely on Filter being passed to my list function to work.