Oh, and I also added onReady snippet to make sure that dataset is loaded… but, still no luck
Tried to use wix-storage to store and retrieve these fields, but it doesn’t seem to work with data hooks?
//Set dataset fields to input fields
$w( “#dataset1” ).onReady( () => {
$w( “#dataset1” ).setFieldValues( {
“firstName” : $w( “#input1” ).value,
“lastName” : $w( “#input2” ).value,
“emailAddress” : $w( “#input3” ).value,
} )
});