Hi,
I am looking to use multiple where conditions. So, where X = Y AND Z=A
How can I do this. My two mappings (attached) work independently, but not together
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