I have a Slide show that displays the content of the database correctly. This includes Text and Images. When i change an image, it does not update the database when I hit the submit button.
Please note: I am not using any code . The image and add photo are linked to fieldname “photo1”, “photo2”, etc.

The submit button is connected to dynamicdataset with submit.
The dynamic dataset is CompaniesNEW Item and has anyone able to do all functions:
I hope this helps.
Bill
I wasn’t sure if I required code to fix this problem. I could do a write to the database for all fields that don’t work on a submit or do all 10 slides. the code would look like this.
$w(“#dataset1”).onReady(() => {
$w(“#dataset1”).onReady(() => {
$w(‘#dataset1’).setFieldValue(‘title’, $w(‘#companyName’).text);
$w(‘#dataset1’).setFieldValue(‘photo1’, $w(‘#photo1’).text);
$w(‘#dataset1’).setFieldValue(‘photo2’, $w(‘#photo2’).value);
$w(‘#dataset1’).setFieldValue(‘photo3’, $w(‘#photo3’).value);
$w(‘#dataset1’).save();
})
})
})
})
Sorry for the double onReady. Bill