Page 1 of 1

Values not showing up on Windows Phone

Posted: Tue Feb 19, 2013 12:05 am
by Bernie

The code below feeds some labels with data.
Any idea why it is not working on a Windows Phone?

var EventsID = localStorage.getItem("EventsID")
var graphQuery = 'https://graph.facebook.com/';
var authToken = 'myToken'

var url = graphQuery + EventsID +'?access_token='+ authToken;

$.getJSON(url,function(data){

Tiggzi('mobilelabelEventsDetailName').text(data.name);
Tiggzi('mobilelabelEventsDetailDescription').text(data.description);

Code: Select all

 Tiggzi('mobilelabelEventsDetailLocation').text(data.location);   

)}:

Code: Select all

 });

Values not showing up on Windows Phone

Posted: Tue Feb 19, 2013 1:00 am
by Bernie

maybe a solution is to use the mapping features.
Having the URL and the request variable, how can I create a rest service with that in order to use it for mapping the values to my labels?


Values not showing up on Windows Phone

Posted: Tue Feb 19, 2013 1:42 am
by Bernie

Solved.
Used a Dynamic service URL to create the restservice for mapping.