Posted by Chris Anderton on June 11th, 2009 @ 22:52 – 0 comments
Updated on June 11th, 2009 @ 22:53
Tagged with prototype
We've got a couple of projects on the go right now where a Facebook style multi-select (with or without autocomplete) is a good fit for making the user interface more, err, useable.
As ever, searching around there are a number of options - especially given the number of Javascript frameworks around. For us, things are also complicated by the fact that not all our projects use the same Javascript libraries - we're not always responsible for the front-end code and as such some clients already have a dependency on, or a preference for a given library.
Read more of this entry
Posted by Rob Anderton on April 10th, 2009 @ 00:01 – 0 comments
Updated on April 10th, 2009 @ 00:11
Tagged with prototype
Let’s say we have a JavaScript function that looks like this:
function plot(options) {
options = options || {};
this.onUpdate = options.onUpdate;
//
// more code to do something interesting
//
}
Read more of this entry
Posted by Rob Anderton on April 8th, 2008 @ 18:55 – 16 comments
Updated on July 17th, 2010 @ 23:37
Tagged with prototype
So today I found myself in need of a WYSIWYG editor for the admin pages of the site I’m currently working on. I’ve used FCKEditor and Scott Rutherford’s Rails plugin before and Chris has recently been using TinyMCE for a few of our other projects but both of them seemed too heavy, especially when the project requirements only stated a need to apply simple formatting like bold, italic and headings.
Read more of this entry