Topic: WebApp.net on the iPhone, Android and Nokia

Please excuse the odd question as my understanding is that WebApp.net is aimed at development on the iPhone.  I am looking for a library that works well across multiple mobile devices: iPhone. Andriod and higher end Nokias.  WebApp.net is not far off the mark.

WebApp.net works beautifully on the iPhone and in my testing also does a great job on the Android.  However the demo pages don't appear to load on a Nokia N97 running S60 5th Edition.  It only gets as far as a loading the title and the background image.  My gut feeling is this is probably not a hard problem to fix. 

Doing so would make WebApp.Net a great option for creating web application across a wide range of devices.  What do you think?

Re: WebApp.net on the iPhone, Android and Nokia

Yes, works fine on iPhoneOS, Android and webOS (and some other WebKit implementation)

About Nokia, the main problem for me is a way to test. Is there any emulator for that?

/!\ Don't forget to "Like" WebApp.Net from the homepage.

Re: WebApp.net on the iPhone, Android and Nokia

Chris, many thanks for the quick response. 

The Nokia emulator for the N97 is part of their SDK which is available at http://www.forum.nokia.com/info/sw.noki … .zip.html.

Please let me know if I can help in any way.

Re: WebApp.net on the iPhone, Android and Nokia

ok thank you BharatBedi

/!\ Don't forget to "Like" WebApp.Net from the homepage.

Re: WebApp.net on the iPhone, Android and Nokia

BharatBedi: this is a dead link for me. Can you provide the step by step path to this resource?

/!\ Don't forget to "Like" WebApp.Net from the homepage.

Re: WebApp.net on the iPhone, Android and Nokia

Chris
+ Please navigate to http://www.forum.nokia.com/Tools_Docs_a … form_SDKs/
+ Select "Download all-in-one S60 SDKs"

Re: WebApp.net on the iPhone, Android and Nokia

we are stoped in the same place

any news about this bug?

Re: WebApp.net on the iPhone, Android and Nokia

aromero, I know you did some progress on that which is quit nice.

Do not hesitate to notify us about your progress.

Actually, I have very little time for the framework because I'm working on a huge project (which will help to improve a lot WebApp.Net, no worries).

/!\ Don't forget to "Like" WebApp.Net from the homepage.

Re: WebApp.net on the iPhone, Android and Nokia

Right!

I found the bug on Nokia N97 (i don't know if it happends on every N60 Series),

Method

                function GetLayers() {
                               var lay = [];
                               var src = _group.childNodes;
                               for (var i in src) {
                                               if (src[i].nodeType == 1 && HasClass(src[i], "iLayer")) {
                                                               lay.push(src[i]);
                                               }
                               }
                               return lay;
                }

Line:   _group.childNodes doesn’t return childNodes correctly. (On Nokia N97)

As workaround
Modify line

                _def = GetLayers()[0].id; 

With

                _def = "waHome"; //_FF()[0].id;

And now is working on Iphone, Android & Symbian.

Re: WebApp.net on the iPhone, Android and Nokia

aromero: how do you implement this change in Logic.js? My Logic.js is obfuscated.

Thanks in advance for your attention, and thanks to Chrilith for this excellent library.

EDIT: Found debug version smile

Last edited by kenwonders (2010-05-14 10:39:59)