vincjo
vincjo
Maybe more ankowledged dev than me can help for component style in **next 2.0**. I already worked on to reduce code complexity and make it usable for both client and...
`search` is a global statement in the DataHandler instance. If you need an other global search, you can use `handler.createFilter()` or `handler.filter()` applied to all columns: ```svelte export let handler...
Yes, but what happens if both filters have a search value ? It seems that only the second one would work. I don't get exactly what you want to achieve
Thx a lot. Currently on holiday, I will fix asap. Others issues as well
forgotten, then new post #172, then fixed
Thanks for the link, interesting. I need to create a repro then dig into this issue #128
Hello, `createAdvancedFilter` is useful to add a multiple criteria filter when you have values of type string or number. It has limitations for nested objects. According to your data sample,...
Hello, thx for your reply. I will probably try this use case with the next version
Hello, Depends on where data is updated. - Is it on server side, do you fetch data while user is searching? - Is it a client side search, you load...
For example by adding a `isLoading` state in your data fetching function. It requires to create a store. ```ts handler.onChange(async (state) => { isLoading.set(true) // [await fetching data....] isLoading.set(false) return...