---<br />Author of...<br />'Ajax in Action' <a href="http://manning.com/crane" target="_blank" rel="nofollow">http://manning.com/crane</a><br />'Prototype & Scriptaculous in Action'<br /><a href="http://manning.com/crane3" target="_blank" rel="nofollow">http://manning.com/crane3</a><br />'Ajax in Practice'<br /><a href="http://manning.com/crane2" target="_blank" rel="nofollow">http://manning.com/crane2</a>
Originally posted by David C. Crane:
Ajax is just another presentation technology. Use the same best practices and common sense to let the user do what they need to do without handing over the keys to your domain model or database.
And BTW, despitre the acronym, Ajax doesn't have to use XML.
---<br />Author of...<br />'Ajax in Action' <a href="http://manning.com/crane" target="_blank" rel="nofollow">http://manning.com/crane</a><br />'Prototype & Scriptaculous in Action'<br /><a href="http://manning.com/crane3" target="_blank" rel="nofollow">http://manning.com/crane3</a><br />'Ajax in Practice'<br /><a href="http://manning.com/crane2" target="_blank" rel="nofollow">http://manning.com/crane2</a>
Originally posted by Prithiraj Sen Gupta:
Can AJAX stand alone without depending on the serverside Technologies in case of data pulling??
Well, at the moment, you can write JS-only apps, but they won't be able to do very much. The server is still an essential ingredient. Howeverr, 'local storage' is a buzzword - Mozilla 3.0 will implement it, for example - this will allow a browser app to store data locally while offline and sync with the server later, so that reduces the dependency on the server a little bit.
I am new to AJAX technology and just started reading from the internet.
May I know how much time will it take the developers having work experience in javascript to master AJAX??
---<br />Author of...<br />'Ajax in Action' <a href="http://manning.com/crane" target="_blank" rel="nofollow">http://manning.com/crane</a><br />'Prototype & Scriptaculous in Action'<br /><a href="http://manning.com/crane3" target="_blank" rel="nofollow">http://manning.com/crane3</a><br />'Ajax in Practice'<br /><a href="http://manning.com/crane2" target="_blank" rel="nofollow">http://manning.com/crane2</a>
Originally posted by David C. Crane:
And to answer your other questions...
If you really know JavaScript, then you should be up and running before long. But Ajax opens the door to using a lot more JS than previously, and coding styles and practices are rapidly evolving to cope with larger, more complex JS codebases. Don't be discouraged, though - although there is plenty to learn, it's an incremental learning curve.
Originally posted by Prithiraj Sen Gupta:
I am new to AJAX technology and just started reading from the internet.
May I know how much time will it take the developers having work experience in javascript to master AJAX??
Originally posted by Prithiraj Sen Gupta:
I apologies as I have Presented my self as a developer
If you're playing/working with computers, then you're a developer in my book. Don't get too hung up on titlesI started developing age 14 on a pretty simple microcomputer, and most of the time, I'm still a kid kicking the tires to see how things work.
I am inspired by the JavaScript and its ability to work with anything present in the browser. I am trying my best to use JavaScript as far as possible to make a perfect presentation. Just a couple of weeks before I read about the Buzzword "AJAX" and the technique behind the GOOGLE suggest, Google Earth and Gmail.
---<br />Author of...<br />'Ajax in Action' <a href="http://manning.com/crane" target="_blank" rel="nofollow">http://manning.com/crane</a><br />'Prototype & Scriptaculous in Action'<br /><a href="http://manning.com/crane3" target="_blank" rel="nofollow">http://manning.com/crane3</a><br />'Ajax in Practice'<br /><a href="http://manning.com/crane2" target="_blank" rel="nofollow">http://manning.com/crane2</a>
The code for chapters 5-7 is self-contained, each in it's own zip file. These use JSP backends - see Appendix C for setup details.
Chapters 2-4 and 12 use the QuickGallery code, which has a PHP back-end - see Appendix D for setup instructions. The title page references the various versions of the gallery by chapter.
Chapters 8-11 use the Scratchpad application, which can run either straight off the filesystem, or a web server of your choice (no server-side components to install)!
Originally posted by Prithiraj Sen Gupta:
Actually I become little afraid as I am working on ASP.net,
or should I start working simultaneously both in .Net and Java(Open Source projects).
---<br />Author of...<br />'Ajax in Action' <a href="http://manning.com/crane" target="_blank" rel="nofollow">http://manning.com/crane</a><br />'Prototype & Scriptaculous in Action'<br /><a href="http://manning.com/crane3" target="_blank" rel="nofollow">http://manning.com/crane3</a><br />'Ajax in Practice'<br /><a href="http://manning.com/crane2" target="_blank" rel="nofollow">http://manning.com/crane2</a>
---<br />Author of...<br />'Ajax in Action' <a href="http://manning.com/crane" target="_blank" rel="nofollow">http://manning.com/crane</a><br />'Prototype & Scriptaculous in Action'<br /><a href="http://manning.com/crane3" target="_blank" rel="nofollow">http://manning.com/crane3</a><br />'Ajax in Practice'<br /><a href="http://manning.com/crane2" target="_blank" rel="nofollow">http://manning.com/crane2</a>
My personal preference (again, when possible) is to make an ajax request to the server, the server forwards that request to a JSP which renders some nice HTML ready to be popped right into the DIV of my choice. I use prototype's Ajax.Updater for this purpose.
Your assertion is flawed. If the web framework is capable of delivering a response (duh!) it can be used with Ajax.Updater (or any other Ajax mechanism) in this manner. How does the fact that a server-side compomnent is a Struts action affect what can be returned as the response?I don't think it fits in Struts actions
Originally posted by Bear Bibeault:
Your assertion is flawed. If the web framework is capable of delivering a response (duh!) it can be used with Ajax.Updater (or any other Ajax mechanism) in this manner. How does the fact that a server-side compomnent is a Struts action affect what can be returned as the response?
[ March 30, 2007: Message edited by: Bear Bibeault ]
Originally posted by Prithiraj Sen Gupta:
I need some practical knowledge about JSON to
know this technology(not only theoritically but also in pragmatic sense) down to the roots(so that I can build my 1st AJAX program with JSON).
How to get JSON output through server(stringifying like XML??? but how??)?
What makes machine easy in parsing and generating JSON than XML??
Where and when should we use these formats(Ketchup/Mustard
) in our AJAX applications??
How the book AJAX IN PRACTICE will help me in building and learning Ajax applications?
How the book is different from AJAX IN ACTION?
Please confirm me about the arrival of the books "Ajax in Action","Prototype and Scriptalculous in Action", in India. A week before I have already sent a mail to manning publishers.
The e v a l function is very fast. However, it can compile and execute any JavaScript program, so there can be security issues.
She said she got a brazillian. I think owning people is wrong. That is how I learned ... tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
|