To access items.html you will need to enter some search query and then press search. You will now see the alert is called.
To access itemcategories.html you just press the button Items by Categories. Now the alert is not called unless you press F5 or CTRL+R
I'm totally clueless as to what is going on. I can't see any differences to the two pages (and you can check the source yourself) so why do they behave differently?!?
If you have any suggestions I would be very happy to hear them.
After all the data has loaded the listitems (and their contained links) are not themed (or maybe rendered is a better word) by jquery mobile. I suspect that all is themed before the data is loaded and I need to make these controls themed myself but I have no clue as to where to start.
They just look like regular links and I would really like to have a list matching the rest of the design of the site I am building.
I am currently trying to develop a phone app using PhoneGap. It's a game item app that should retrieve information from a database I have compiled. I have a .Net project that exposes the data using .ashx file.
The problem is that I cannot retrieve the information from the site with getJSON...
I have the following very simple C# code that generates the information server-side:
public void ProcessRequest(HttpContext context)
{
if (context.Request.QueryString["id"] != null)
{
using (DataClassDataContext db = new DataClassDataContext())
When I use chrome I can see that the status of the call is cancelled and nothing is returned. When I run the same script locally there are no problems.
and the result is almost the same. The status of the call is pending instead of cancelled. But the endresult is the same... I get nothing.
Can anyone give me any pointers as to what is wrong? I believe this is a cross domain problem but I am puzzled by the fact that I can access the information from twitter when I can't access the information from my own server...