Google Tasks-like js control
I need to emulate Google Tasks with a few minor changes.
Is there an open source JavaScript engine that I can reuse?
The main feature I'm looking for is the "plain text" feel of the editing process in place.
a source to share
A lot of Google's cool is built using their Web Toolkit (GWT). See the following URL for your widgets gallery that you can see on many of their sites (e.g. stackpanel for tasks): http://code.google.com/webtoolkit/doc/latest/RefWidgetGallery.html
Unfortunately (for me), most of the code is Java, which is then compiled into highly optimized Javascript. For more information. at Google Web Toolkit, http://code.google.com/webtoolkit/overview.html
a source to share
Looked around and found the following list of AJAX-MySQL TODOs with downloadable source code: http://www.hesswebservices.com/download_scripts/TodoV1/
You can always hack the CSS and JS code until it works for you. Hope this helps!
a source to share