Kieran Keene
Posts: 0
Joined: Sat Dec 21, 2013 6:09 pm

Multiple Where

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 Image

Kieran Keene
Posts: 0
Joined: Sat Dec 21, 2013 6:09 pm

Multiple Where

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?

Igor
Posts: 0
Joined: Tue Apr 02, 2013 12:05 pm

Multiple Where

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

Return to “Issues”