FAQ Profile Memberlist Usergroups Register
Log in to check your private messagesLog in to check your private messages -> Log in  
IE Mobile Supports AJAX
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Smartphone Thoughts Forum Index -> DEVELOPER Printable version
View previous topic :: View next topic  
Author Message
Jerry Raia
Contributing Editor


Joined: 07 Jul 2003
Posts: 4759
Location: Los Angeles

PostPosted: Thu May 04, 2006 9:00 pm    Post subject: IE Mobile Supports AJAX Reply with quote

http://blogs.msdn.com/fzandona/arch.../03/589134.aspx

"I have been asked about AJAX development support for Internet Explorer Mobile (running on Windows Mobile-based devices). The short answer is: YES, IE Mobile on Windows Mobile 2003 and later supports AJAX! The long answer was given last year by Kevin Grey, SDET on the IE Mobile Team..."

What is AJAX you might ask (I had to ask)? It stands for Asynchronous JavaScript And XML of course. The basic idea is instead of refreshing the entire web page when you are entering some information, for example, only the part that changed updates. On a mobile web page this is great with page loading being painfully slow at times.
_________________

[3125] [BlackJack] [8525]
Back to top
View user's profile Send private message Visit poster's website
ctmagnus
Smartphone Thinker


Joined: 07 Jul 2003
Posts: 310
Location: Golden, BC, Canada

PostPosted: Thu May 04, 2006 9:12 pm    Post subject: Reply with quote

The term AJAX always makes me think "coffee shop". #Silly
Back to top
View user's profile Send private message
Kris Kumar
Contributing Editor


Joined: 02 Jul 2003
Posts: 4360
Location: Rochester, NY, USA

PostPosted: Thu May 04, 2006 9:17 pm    Post subject: Reply with quote

Then how come GMail and Google Reader and other AJAX site not work on the pIE? Confused
Back to top
View user's profile Send private message Visit poster's website
Ed Hansberry
Rogue Pocket PC Thoughts Editor


Joined: 30 Jun 2003
Posts: 50

PostPosted: Thu May 04, 2006 9:18 pm    Post subject: Re: IE Mobile Supports AJAX Reply with quote

Jerry Raia wrote:
"I have been asked about AJAX development support for Internet Explorer Mobile (running on Windows Mobile-based devices). The short answer is: YES, IE Mobile on Windows Mobile 2003 and later supports AJAX! The long answer was given last year by Kevin Grey, SDET on the IE Mobile Team..."

What is AJAX you might ask (I had to ask)? It stands for Asynchronous JavaScript And XML of course. The basic idea is instead of refreshing the entire web page when you are entering some information, for example, only the part that changed updates. On a mobile web page this is great with page loading being painfully slow at times.

What good is AJAX support though if it can't load your GMail page without having to resort to plain old HTML? I am surprised it supports it at all, but I guess I'm not surprised that it is a limited implementation. Confused
_________________
Check out what is on my Pocket PC!
Please don't PM me.
Back to top
View user's profile Send private message Visit poster's website
Mike Temporale
Managing Editor


Joined: 07 Jul 2003
Posts: 8829
Location: Toronto, Canada

PostPosted: Thu May 04, 2006 9:24 pm    Post subject: Reply with quote

ctmagnus wrote:
The term AJAX always makes me think "coffee shop". #Silly


Coffee? Nah, that's Java. Ajax always makes me think of that toilet cleaner. :pukeface:

Back on topic... I find all of the added IE Mobile features to be a great addition. However, I would have expected more effort put into the underlying problems. Like why is there no cap on IE temp files, and why doesn't Windows Mobile automatically delete them when space is running low. That, to me, would be a better improvement than the latest round of feature additions. Sad
_________________
"I have no special talents, I am only passionately curious" - Albert Einstein
Back to top
View user's profile Send private message Visit poster's website
ctmagnus
Smartphone Thinker


Joined: 07 Jul 2003
Posts: 310
Location: Golden, BC, Canada

PostPosted: Thu May 04, 2006 10:14 pm    Post subject: Reply with quote

Mike Temporale wrote:
I would have expected more effort put into the underlying problems. Like why is there no cap on IE temp files, and why doesn't Windows Mobile automatically delete them when space is running low.


I haven't done too much research into this on the Smartphone end (darn Canadian data plans) but I've got my IE cache set to max out at 8MB on my Pocket PC, via MemMaid. And when I get my next device (at this point, likely a JAMin), I'll apply the same settings there.
Back to top
View user's profile Send private message
dbarnhart
Smartphone Neophyte


Joined: 18 Apr 2006
Posts: 6
Location: Phoenix Arizona

PostPosted: Thu May 04, 2006 10:22 pm    Post subject: Not There Yet Reply with quote

A couple of weeks ago I tried implimenting some Ajax on WM2003SE and it was quite a disappointment. No show/hide layers. Just about the only DHTML thing I could get to work was innerText and innerHTML and only for div and span tags.

Also, when I tried to use innerHTML to write the contents of a div and include a button with an onClick event handler outside the div, it would not work.

I'd say that MS has a long way to go before AJAX is a reality on WM.
_________________
iRyder Product Manager
http://www.iRyder.com
Back to top
View user's profile Send private message Visit poster's website
Kevin Daly
Smartphone Pupil


Joined: 06 Sep 2003
Posts: 32
Location: Wellington, New Zealand

PostPosted: Fri May 05, 2006 5:39 am    Post subject: Reply with quote

I think it's important to keep sight of what is available on mobile IE and what is not, and how that impacts AJAX.
The one big huge essential feature (XMLHttp) is present, which frankly surprised me. So it is possible to do the out of band requests to the server that AJAX depends on.

However, the *other* feature that is normally required is a decent DHTML implementation, and that really isn't there yet.
If you expected typical AJAXy applications to work out of the box, or anything built with the various toolkits that are now available, you'd almost certainly be disappointed.

Still, it's better than nothing.
Back to top
View user's profile Send private message Visit poster's website
Mike Temporale
Managing Editor


Joined: 07 Jul 2003
Posts: 8829
Location: Toronto, Canada

PostPosted: Fri May 05, 2006 6:07 am    Post subject: Re: Not There Yet Reply with quote

dbarnhart wrote:
A couple of weeks ago I tried implimenting some Ajax on WM2003SE and it was quite a disappointment. No show/hide layers. Just about the only DHTML thing I could get to work was innerText and innerHTML and only for div and span tags.

Also, when I tried to use innerHTML to write the contents of a div and include a button with an onClick event handler outside the div, it would not work.

I'd say that MS has a long way to go before AJAX is a reality on WM.


You'll need a WinMo5 device with AKU2 for AJAX to work on Windows Mobile. So I'm not surprised to hear that you had little success on a 2003SE device. Wink
_________________
"I have no special talents, I am only passionately curious" - Albert Einstein
Back to top
View user's profile Send private message Visit poster's website
Mike Temporale
Managing Editor


Joined: 07 Jul 2003
Posts: 8829
Location: Toronto, Canada

PostPosted: Fri May 05, 2006 6:09 am    Post subject: Re: IE Mobile Supports AJAX Reply with quote

Ed Hansberry wrote:
What good is AJAX support though if it can't load your GMail page without having to resort to plain old HTML? I am surprised it supports it at all, but I guess I'm not surprised that it is a limited implementation. Confused


I'm guessing at this but.... I think http://www.Start.com or http://www.Live.com would work without issues. Wink
_________________
"I have no special talents, I am only passionately curious" - Albert Einstein
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Smartphone Thoughts Forum Index -> DEVELOPER All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You can vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group
Copyright 2004 Jason Dunn | Web design & development by Fabrizio Fiandanese