Lim,
Please specify steps how we can get goal page from start page of your app?
Regards.
Lim,
Please specify steps how we can get goal page from start page of your app?
Regards.
Please do run from startScreen.
For a short cut, you can start from RealStep1_Clone_2 , fill in the blanks then,
run at RealStep33_Clone_4 where it display the list u had fill in peviously, and now type in the actual amount, add and it will display the label and saved into the database.
Hi Lim,
You did not add code provided above.
See details:
http://prntscr.com/40sgp2/direct
You need to use the code given below :
pre
//Set your component names.
var inputName = "actualAmount";
var labelName = "displayActualAmt";
var itemElement = "mobilegrid_319";
var currentElement = jQuery(this);
//Note: you should replace "yourItemElement" with name of component which is you iterate with mapping.
var currentItem = currentElement.closest('[name="' + itemElement + '"]');
//Get value from input
var bananaValue = currentItem.find('[name="' + inputName + '"]').val();
currentItem.find('[name="' + labelName + '"]').text(bananaValue);
/pre
Regards.
Hi thanks im able to display it now.
However, it is not saved into database.
I would like to save the actual amount and the total amount into database.
I've created two database, one for each.
Thanks!
Lim,
Now you need to make update processing.
Please follow these tutorials to understand how to do it:
http://devcenter.appery.io/tutorials/...
http://devcenter.appery.io/tutorials/...
Regards.
Hi Lim,
Please specify: do you reload this list after you save to DB?
If so - you need to populate this info in list service mapping.
If not - please try solution above to get it work.
Regards.
Hi Nadiah,
Please specify: do you invoke this list service after invoking update service?
If so how do you do it?
Regards.
Hi so sorry, not very sure what you meant.
Here is our application.
Please do run from RealStepp33_Clone_4
http://appery.io/app/project/8ede79da...
Our aim is to display the amount on the label after we added in.
http://appery.io/app/mobile-frame?src...
Thank you.