Software As She’s Developed

Mahemoff’s Podcast/Blog - Web, Programming, Usabilty from the Author of ‘Ajax Design Patterns’ (AjaxPatterns.org)

Software As She’s Developed header image 4

Dojo Gotcha - Initialization with window.onload

June 25th, 2006 · 1 Comment

I've been playing with Dojo, specifically the rich text editor, and came across a Gotcha in setting up the whole thing, which isn't documented too clearly. Specifically, Dojo needs its own window.onload - if you have your own window.onload (as you probably do if you need any initialisation), it will conflict with Dojo!!! The solution is [...]

[Read more →]

Tags: SoftwareDev

Wanted: Massive Local Storage

June 6th, 2006 · 9 Comments

Local storage - beyond 2KB cookies - is now a step closer with the latest Firefox effort. You get a local storage API like this: PLAIN TEXTJAVASCRIPT: sessionStorage.setItem(..) globalStorage.namedItem(domain).setItem(..) The fantastic thing is Brad Neuberg's Dojo work means we can code independently of the local storage mechanism. Since IE also has local storage, as well as Flash, most [...]

[Read more →]

Tags: SoftwareDev