rails-multistep-form icon indicating copy to clipboard operation
rails-multistep-form copied to clipboard

Rails demo that implements a multistep form wizard from scratch using a straightforward and reusable approach

Results 4 rails-multistep-form issues
Sort by recently updated
recently updated
newest added

I notice that in your controllers you have an `if/else` for `@wizard.save` but the `save` method handles the validations etc so the else statement where you'd normally put a flash...

I'm using this multi-step form pattern with a model accepts_nested_attributes_for two other models. ``` ruby # id :integer not null, primary key # pickup_address_id :integer # dropoff_address_id :integer # items...

When using a `has_one` relation for nested attributes, Rails throws an `ActiveModel::ForbiddenAttributesError` when saving. I tested this with my app and also with this repository (Product `has_one` Category). This happens...

Not really an issue, just to let others and you know, I had to add ``` ruby ModelWizard.new(Inspection, session).start ``` to my controller test in the `create` action, for a...