Techniques Behind Modern Web
8 Feb
Didier Girard releases 61 slides introducing why GWT is better solution for developing modern web apps.
Benefits to be highlighted are:
He also tries to keep GWT away from common misjudgments like:
Conclusion: GWT, c’est facile, efficace et beau! Please translate it into English for me. I don’t know Français :) but thank you a lot, Didier.
(Please read another post of mine summarizing Didier’s thoughts on GWT basis vs. what of Microsoft Volta.)
Recommended Reading: This site recommends Website Magazine for 'Net Success
Don't forget to subscribe
so you don't miss out on future posts!
2 Feb
Bramus introduces a new version of jsProgressBarHandler with bugfix to making multiple barImages properly work with Safari and addition of an internal queue. jsProgressBarHandler is a Javascript based Percentage Bar / Progress Bar, inspired upon JS-code by WebAppers and CSS-code by Bare Naked App. Next to a structural rewrite of the WebAppers code, this javascript progress bar can easily be extended ...
31 Jan
Matt Snider reveals another useful set of JavaScript functions targeting Date manipulation. He follows the same approach to extend String functions. First, he adds additional functionality to JS native Date object (constants and static methods): YAHOO.lang.augmentObject(Date, { /** * Date constant for full month names * * @property MONTHS * @type string */ MONTHS: ['January','February','March','April','May','June','July','August','September','October','November','December'], /** * Returns a date object from the string; expects ...
28 Jan
You will not see "Hello World" example in David Geary's book, Google Web Toolkit Solutions: More Cool & Useful Stuff, because it's not a book for newbies. Instead, the authors tell very clearly in the opening of the book that their target is to put GWT developers into the fast lane with practical, non-contrived solutions -- not to help ...
24 Jan
The Ext team has to announced the release of version 2.0.1 of Ext JS. This is a maintenance release that fixes several issues with the 2.0 release. Here are some notable issues that have been addressed: Fixed various overflow/scroll issues related to form fields and grid Workaround included for the Firefox 2.0/Mac overflow:auto invisible scrollbar bug Fixed several issues related to destroying form ...
22 Jan
Didier Girard, CTO of SFEIR a consulting company based in Paris which has been developing a number of GWT applications, gave a talk to InfoQ on goals, benefits of GWT and how it is different from Microsoft Volta. Some important points he highlighted about GWT are: GWT is a technology which enables the development of Rich Internet ...
20 Jan
Hosam Kamel has a nice summary of 40+ Tooltips Scripts With AJAX, JavaScript & CSS. You can find there a variety of solutions for integrating tooltip to your website -- some are quite lightweight, others may require a specific Ajax framework like Prototype, JQuery, Mootools or YUI. The last JavaScript tooltip tool I used was the one Ext framework provides. Yet, ...
19 Jan
Matt Snider has shown us JavaScript String helper functions that recalls the ones I used in my project recently -- a bundle of functions collected from many sources. Frankly, some of them are not very efficient. String.prototype.ellipse = function(maxLength){ if(this.length > maxLength){ return this.substr(0, maxLength-3) + '...'; ...
15 Jan
Microsoft Volta was often referred to as a GWT copycat (carelessly). Yes, Volta does generate JavaScript but it does so in a somewhat different way than GWT: while GWT reads Java code and compiles to JavaScript, Volta reads bytecode (.NET IL) and compiles to JavaScript. And Volta uses the existing .Net APIs instead of defining its own UI APIs like GWT ...
15 Jan
John Resig, the creator and lead developer of the jQuery JavaScript library, looks back when JQuery was born: I remember doing the first release at BarCamp NYC (combined with the mention of two other projects of mine that fizzled: Feed Pile and Idea Shrub). While I had released a bunch of open source code in the past, this was the first ...