Is there a callback function or any way to know when the place data has been processed with the template and injected into the page?
I want to update something else once the place data gets displayed.
I'm displaying my place information using:
var myPlace = new nokia.places.widgets.Place({
placeId: "1234abcd",
targetNode: "myPlaceContainer",
template: "myPlaceContainer"
});
Thanks
Turns out that onData
and onNoData
are user-defined functions applied to Place that can be used for this.
Still getting my head around using the documentation site.