Load Dynamic List with json results.
How can I load this array example from a json result set?
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/
How can I load this array example from a json result set?
This shoul help http://api.jquery.com/jQuery.parseJSON/
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?
You could store the array in local storage, or create a global variable to hold the array.
Thanks Max