views:

46

answers:

1

Hi,

I want to build a wizard like multi-step input form for my model.

I want to stick to rest practices as long as possible.

The individual steps in the wizard don't have much inter-dependency so to avoid the round trip to the server, I want to store the whole data on client side using JQueryUI tabs or similar.

I have following question.

  1. Is there any better way this could be achieved ?

  2. Can anyone point me to any example or documentation regarding the use JQueryUI-tabs and rails together ?

regards.

A: 

Try http://github.com/CodeOfficer/jquery-ui-rails-helpers which has a JQueryUI tab helper.

Mark Thomas