Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
335 views

How do I select a default value for a collection of radio buttons in Formtastic?

I'm building a form in Rails3 and Formtastic. I have the following field: <%= f.input :housing, :as => :radio, :collection => {"Awesome" => "one", "Great" => "two", "Nice" => ...
1
vote
1answer
770 views

how to get parameter names of a method/operation from a wsdl file

I'm trying to develop a form generator from a given wsdl file in java. Here is a post about the project: http://stackoverflow.com/questions/1972110/java-form-generator-from-a-given-wsdl-file I could ...
1
vote
2answers
242 views

Any form generator(from annotated javabeans) for swing?

I've seen several form generators(swing, web etc from javabeans) but cannot find them again. Help me with links please. PS generator is not designer, generator - generates ui semi-automatically, no ...
0
votes
1answer
74 views

How to generate a dynamic form using javascript/jQuery?

I need to generate an entire html form dynamically based on the Ajax response from server. In response there will be information like input type , input labels, validations if any etc. The form at ...
0
votes
4answers
674 views

PHP Form Generator

How would I generate parts of a form using PHP? I would like to make a form that allowed the user to enter a date through drop-down menus of month, day, and year respectively without typing every ...