Ruby on Rails client oriented formbuilder?

I have a client who wants to build their own questionnaires. Something like WuFoo (www.wufoo.com), but more secure and contained in the application.

I looked at Smerf ( http://github.com/springbok/smerf ) which provides a yaml-to-form transformation, but I need something the user can use to create their own forms.

+3
source share
4 answers

I would look at using active_scaffold. The main version has not been updated for Rails 3, but the fork is in the location below. I think this will work well for your purpose, you just need a way to capture the data and submit it. Here is a demonstration of what it looks like when it is running:

https://github.com/vhochstein/active_scaffold

Below is a demo at the top of the page:

http://demo.activescaffold.com/roles

+1
source

You can always embed Google Forms. It may be easier than reinventing the wheel. If you do not have a specific use case, is this not applicable?

0
source

Javascript-, , JQuery Form Builder. , Javascript. , Rails

0

You might want to check this out. Dynamic forms

I am also looking for something very similar. What solution did you come up with?

0
source

Source: https://habr.com/ru/post/1755174/


All Articles