May I know the Velo code to populate a text input field in Wix Form app. The default value for the field is taken from another dataset.
With my very limited know-how in Velo, I had something like this which I think is incorrect:
$w.onReady(() => {
// Populate Apartment field with Dynamic Apartment name
$w("#dynamicDataset").onReady(() => {
const item = $w("#dynamicDataset").getCurrentItem();
$w('#input11').value = (item.title);
}
});