Dataset Filter and Sort isn't working

I tried to add a filter and a sort to my dataset, but it doesn’t work.
Would this be Editor X’s problem?

I could set filter and Sort 2 dyas ago, but it didn’t work from yesterday…

1 Like

I have the exact same issue, contacted customer care 45 mins ago, talked to an agent about the problem and he couldn’t find a solution. After a while they’ve sent me a mail saying "Hi there, We have forwarded the information to the relevant department, and they are investigating this matter further. We will contact you as soon as possible once we have feedback. Thank you so much for your patience and understanding. "

Same issue.

Hey there! Here’s the latest update from Wix:

"We want to let you know that the issue with not being able to set any filter/sort from a data set has been escalated to our developers.

As soon as we have any resolution from them we will let you know."

The Filters that I’d set for Datasets already configured (before the 20th of January) are still there and still working, but any Filters I try to apply to Datasets created after that date (approx. date) don’t work.

Thanks for looking into this. I’m completely stalled without a resolution to this.

Hi, thanks everyone and we apologize for the issues this may have caused.

We are working with our developers to get this resolved as quickly as we can. As soon as we have an update, we will share it here.

Please let us know if you have any questions.
Kindly

Hi everyone, the issue has been resolved by Wix. Now I can sort or filter may datasets again. Here’s the link of the notification regarding the issue.

HI all! It’s May 15 now and I’m running into the same issue. Is the issue back? Anyone else having a problem or is it just me. I would prefer to use the dynamic dataset panel filter/sort rather than coding it in velo, but if i can’t get it to work soon, velo it is.

The issue mentioned in the thread seems to have been a global issue and don’t see any now. I’m also unable to replicate the issue on my end. Mind sharing a video showcasing the issue so we can check.
Also, if you think it may be an issue, please don’t hesitate to contact our support team.
https://support.wix.com/en/article/contacting-wix-customer-care-for-support

@Rob Thanks Roberto! User error on my part. I believe my issue was that because I have connected all of my dynamic repeater elements using velo, I needed to code in a filter instead of using the dynamic dataset settings. Perhaps if I had connected the repeater elements to my dataset fields using the wix/editorX built-in connector settings then the filter would work, but alas, one more velo line is all I needed :slight_smile:

@jessica-cortez-kimba Glad you got that sorted and believe that is the case since the code is handling the connection. Happy it’s just a line of filter code I would guess . Trying to learn Velo coding myself since it’s asked pretty often on here. :grinning:

@Rob Exactly! After using velo to connect all of my elements to the associated fields within my dataset, I then just needed to add a line of filter code to my query when connecting the repeater to the dataset:

// connecting data to repeater (filtering using .eq statement)
wixData . query ( “datasetName” )
. eq ( “fieldKey” , “value” )
. find ()
. then (( results ) => {
$w ( ‘#repeaterName’ ). data = results . items ;
});

I’m always open to feedback and suggestions on other methods that might work better. Thanks again Roberto for all of the help you give to our editorX community :slight_smile:

@jessica-cortez-kimba If it works then seems good and thanks for the compliment. Still trying to learn the basics of Velo but that seems to be what the API reference recommends.