vincjo
vincjo
In `ThFilter.svelte`, since the key is the variable, you should pass it directly as the filter param rather than using a callback: ```ts handler.filter(value, key) ``` instead of: ```ts handler.filter(value,...
Oh, ok. Nice I also added a workaround in version `1.14.3` (this library needs a better way to name filters). You can choose what best suits your needs. In `ThFilter.svelte`...
There is currently no method or component to edit/delete or create a row. But it is relevant and will probably be added in a future release
Indeed, didn't think about it. I added a workaround for column sorting, where you can pass an identifier to the sort method. Released in `1.14.4`. ### Examples Using `handler` instance:...
There is a way: ```ts handler.sortAsc('id') handler.sortDesc('amount') handler.sortAsc('date') ``` (You can add an identifier as a second parameter) When you update rows using `setRows()`, last 3 sorts are played automatically.
It is how row selection is implemented for client-side in V1. Any interaction will remove the selection, which is not ideal, i agree. I have already upgraded the system but...
Svelte 5 / Runes support will be a major version upgrade for S-S-D. Until then, whatever the developments, there's no planned breaking changes
Thank you for your feedbacks which i'm taking into account for the next version. At the moment, my feeling is that the `` component is pretty complex and must be...
It looks really great :raised_hands: I'd like to add a link from the SSD home page. Can I link back to your github repo for now? I don't realize the...
Well done! Thank you, I updated the links 👍