I\'m working with the contact list tutorial:
... and I w
Well, I finally managed to make an async call which updates the GUI, as recommended by @LStarky; note that in order to do that, one must ensure ContactList
class is a single instance class, so that there is only one property contacts
whose binding updates the HTML GUI.
However, since all of this was a bit of a hacky guesswork, it would still be nice to get a proper answer from someone.
The single instance issue described in:
For reference, I've left the working example saved as a gist.run here:
... so basically, after the two alerts, the shown contacts will get updated with the data obtained from the PHP page.