Date picker displayed date is reset when placed on slide

Hey wix team,
Reporting another wixslide bug. I have a date picker on a slide and the displayed value on the date picker is being reset when i change to next slide using a next button and come back to the slide using a back button. This is also happening when I click on the slide navigation buttons to navigate to another slide and come back to the same slide. The value of the date picker is being reset only if i come back to the slide where it is present. If i dont come back I can access it anywhere from any slide using console.log function. Please help me to solve this issue asap.(edit: There is no code written by me resetting the datepicker value. So I guess its a bug from wix side)
Thanks

Yup still the same 2 years later

Is there a workaround for that? I’m having the same issue with a multi-state box.

I’ve found a solution. Something like that is working just fine and you could modify it for your case.

export function Go_to_date_picker_page_button ( event ) {
let date = $w ( “#myDatePicker” ). value
$w ( “#myStatebox” ). changeState ( ‘Date_picker_page’ ). then (() => {
$w ( “#questionDate” ). value = date
})

I can’t believe this is still a BUG in 2023!!! I’m relatively new to WIX and coding, and I burned like 4 hours on this single issue…

(And I actually still not able to find a good method to maintain this value with all the validations when navigating through state box)

What is the #questionDate ?? (I cannot figure out where it came from)