Page 2 of 2

Problem with list items and clearing fields

Posted: Thu Mar 20, 2014 4:30 pm
by Maryna Brodina

Hello! Could you tell us app name?


Problem with list items and clearing fields

Posted: Fri Mar 21, 2014 10:36 am
by Dennis Wormsbecher

app Trial

Login Demo/user
click Health-test (scrHealthTest1_A)
Tab pictures (scrHealthTest1_C)


Problem with list items and clearing fields

Posted: Mon Mar 24, 2014 12:37 am
by Igor

Hello,

Please change your JS code in the datasource mapping fields "name" and "description" Image
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