How to give an imput textbox a text based on the value of another dataset?
You can just simply link the text box to a dataset field through the dataset link.
https://support.wix.com/en/article/connecting-page-elements-to-a-dataset
Or set it by code something like this.
$w(“#input1”).value = “Daniel” // From database use: $w(“#dataset1”).getCurrentItem().fieldName; //
https://www.wix.com/corvid/reference/$w.TextBox.html#value
https://www.wix.com/corvid/reference/wix-dataset.Dataset.html#getCurrentItem