Hi Yisrael,
Thanks for your help!
I made the change you suggested and added some timeouts, I tried without the time outs and it did not work properly.
I leave my code here if anyone is looking for/having the same issue.
Note: Really like the changes that were made on the Wix Code Editor, amazing work as always!
$w.onReady( () => {
$w("#dynamicDataset").onReady( () => {
setTimeout(() => {
$w("#dynamicDataset").setFieldValue("rank", $w("#input5").value);
$w("#dynamicDataset").save();
}, 3000);
});
});
Thanks again Yisrael!