Posts Tagged

Rails

Building a Multi-Step Form in Rails (Part 4)

So far, we have been building the tools our server will use to implement a multi-step form in our Rails application. Now it is time to put them all together by creating the controller that will put those tools to use.

Read More

Building a Multi-Step Form in Rails (Part 2)

In our quest to build a server-side multi-step form in Rails, we have already devised a way to maintain state between steps. Now we need to build the interface that will receive input and update the database record.

Read More

Building a Multi-Step Form in Rails (Part 1)

Multi-step forms are a great way to elicit a lot of input from your users with little friction. However, without a front-end framework in place, it can be hard to create one. Luckily, there are many tools available in Rails that can help you build a server-side multi-step form.

Read More