Reputation: 1190
I'm trying to wrap my head around how to accomplish the following in my Rails project.
I'm trying to create a reusable template that users can create, edit, and save to be used later. The process is as follows:
Example: Step 1: Universe of Parameters:
Step 2: User "saves" the checked items, and sees the following only:
I'm not sure how to approach this. Is this an HTML solution? Is it JavaScript? Can I do it in Rails? Any help would be greatly appreciated
Upvotes: 0
Views: 147
Reputation: 824
Everything will depend of where you want those data stored, if you want them on your database, you'll maybe use AJAX call to your Rails Controller, if you want them stored on your client browser, you both can use localstorage or cookies
Upvotes: 0