Page 1 of 1

Load Dynamic List with json results.

Posted: Thu Oct 11, 2012 2:01 pm
by CraigInDallas

How can I load this array example from a json result set?

http://help.gotiggr.com/getting-start...


Load Dynamic List with json results.

Posted: Thu Oct 11, 2012 2:22 pm
by Maryna Brodina

Load Dynamic List with json results.

Posted: Thu Oct 11, 2012 2:29 pm
by CraigInDallas

Thanks Marina. It does help some.

I don't want to reload the entire result set, for drop-down two, every time there is a value change on drop-down one. Rather, I want to just look up the appropriate value in an array that I have loaded.

If I populate the array on the page load event, what is the best way to refer back to it for my lookup on the change value event on drop-down one?


Load Dynamic List with json results.

Posted: Thu Oct 11, 2012 5:12 pm
by maxkatz

You could store the array in local storage, or create a global variable to hold the array.


Load Dynamic List with json results.

Posted: Thu Oct 11, 2012 5:13 pm
by CraigInDallas

Thanks Max