Problem with list items and clearing fields
Hello! Could you tell us app name?
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Hello! Could you tell us app name?
app Trial
Login Demo/user
click Health-test (scrHealthTest1_A)
Tab pictures (scrHealthTest1_C)
Hello,
Please change your JS code in the datasource mapping fields "name" and "description"
this code
element.text(value);
with the following
pre
element.val(value);
/pre
To clear the fields please use below code:
pre
Appery("txtPhotoName").val("");
Appery("txtPhotoDescription").val("");
localStorage.setItem('_photoID', '');
/pre