views:

153

answers:

2

I would like to have a go at building a 'Wufoo' type form builder. I have seen a few, and understand the logic behind creating it with the aid of javascript. However saving those form preferences for a returning user seems more complex for me, I was wondering if anywone has seen any examples/turorials of this?

Thanks.

+3  A: 

I made an experimental JSON-based form generator. You describe your form using JSON and a bit of JavaScript code generates the form. You could then serialize and store the form data in a database (even as a text blob if you're lazy), then re-load it on the client and generate the form.

You're welcome to the code if it gives you any ideas. It's all there in the page source.

Diodeus
Thanks, will take a look!
Goldy
+1  A: 

ExtJS is building a tool to create forms. The prototypes look pretty nice, but they have not released the tool yet.

Upper Stage