How to add fields dynamically?

I would like have a simple interface for users to add data into
database. How to add new textareas in form, until user want it and
submit all of them at once?

Aa Sh wrote:

I would like have a simple interface for users to add data into
database. How to add new textareas in form, until user want it and
submit all of them at once?

However, if you do need to look these strings up in the database, you
need a
child table with a parent_id, and key and value fields!

On 28 Jan 2009, at 00:13, Aa Sh wrote:

I would like have a simple interface for users to add data into
database. How to add new textareas in form, until user want it and
submit all of them at once?

… and everything on railscasts.com basically

Best regards

Peter De Berdt

Peter De Berdt wrote:

On 28 Jan 2009, at 00:13, Aa Sh wrote:

I would like have a simple interface for users to add data into
database. How to add new textareas in form, until user want it and
submit all of them at once?

#73 Complex Forms Part 1 - RailsCasts
#74 Complex Forms Part 2 - RailsCasts
… and everything on railscasts.com basically

Best regards

Peter De Berdt

Thank you so much, it is almost exactly what I need, except I am a
novice in RoR, so I can’t change the example from multi models to simple
one. I try, but have an error.

Now I have table in database with “e_key” and “comment” fields and
standard new.html.erb (built by scaffolding). So actually I have two
question:

  1. How dynamically to add empty fields on page (by click button)?
  2. How to collect all data from all rows and put they into database?

Thank you for your time!

You will need Javascript for this sort of thing as Ryan B. points out
in his screen casts. There are many ways to do it, e.g., RJS templates
or unobstrusive Javascript.

Next in your create action, you will have to loop through the newly
added rows to the database.

It sounds simple, but it isn’t if you are a beginning Rails programmer.
You may want to get a bit more experience with Javascript/Ajax before
trying this. However, if you must, lookup the multi-model update recipe
in Advanced Rails Recipes Book contributed by Ryan B. and just
exclude the “one” side of “one-to-many” relationship.

Bharat

Phlip, Peter, and Bharat,

Thank you for advises and your time!

Aa Sh wrote:

I would like have a simple interface for users to add data into
database. How to add new textareas in form, until user want it and
submit all of them at once?

Look up how to serialize a Hash into a :text field.

If you don’t need to query a database by a field, you don’t need the
full
overhead of a field type. To give your users abstract data, let them
enter keys
and values into fields that expand forever, and then AR will serialize
them.
They go in as YAML strings of your hashes.


Phlip

Aa Sh wrote:

Phlip, Peter, and Bharat,

Thank you for advises and your time!
I did it!