Page 1 of 1

Two Storage Variables into a DB Query AND

Posted: Wed Sep 09, 2015 9:17 pm
by Agustin Gosende

I ́m trying to use 2 storage variables "ciclo" and "formahoja" but is not working. Here mi screens, any idea?

Image Image

Any idea?


Two Storage Variables into a DB Query AND

Posted: Thu Sep 10, 2015 6:17 pm
by Jack Bua

Don't map both variable to the where parameter. Instead, use:

localStorage.getItem("STORAGENAME");

to reference one in the mapping from the other storage. So in other words, just one mapping, using "value" to refer to that storage variable, and the above code to refer to the other variable.


Two Storage Variables into a DB Query AND

Posted: Fri Sep 11, 2015 4:37 am
by Agustin Gosende

It works!! Thanks


Two Storage Variables into a DB Query AND

Posted: Fri Sep 11, 2015 4:38 am
by Jack Bua

You are welcome. Glad it works.