Hi
I have made a patch to form_helper.rb that adds support for building input elements for nested objects. For example, if a Post class has an author attribute that has a Person class as it's value you can now go form_helper('post', 'author.name') to create an input field that has the author.name as its value and post[author][name] as its name and post_author_name as its id.
This allows form helper to be more useful when dealing with nested objects. Hopefully someone else will find it useful.
It has some shorting coming... auto-indexing does not yet work for nested objects but this could be added.
BTW, its my first Rails patch so be gentle. ;)
Cheers