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/
Hi,
Thanks for the doc. I am still not sure how to do this?
Field1 in the form must equal database field X AND field2 in the form must match database column Y.
It seems like the document you sent only covers static values?
Hi,
What you need to do is:
Save values from "Type" and "Location" fields to the localStorage variables or JS variables then use them in where clause.
Something like this:
pre
code
var val = localStorage.getItem("FirstName");
return '{"Name":"'+val+'"}';
/code
/pre