• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

problem in Dynamic webform creation ?

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<div id="main">
<form action="" id="form_result">


<div onclick="display_fields(0)" id="nofields" style="display: none;" class="notification">
<h2>You have no fields yet!</h2>

Click the buttons on the right to add fields to your form.


</div>

<div class="buttons" id="div_button">

Save Form

</div>
</form>
<div id="debug_box"></div>
</div>

Hi,
I created WebForm using JQuery. the user can create own design using this page. After creating the form, User click "Save Form". the form(form_result) save as one JSp or HTML file.
How to save the Form as file. whether the Jquery function is available to save the form as file or we need to use Action class(Struts 2). How to pass the Whole form to action class to save a form as file. Can you please provide the solution.

Thanks
Nagarajan T.
 
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please UseCodeTags when posting code or configuration. Unformatted code and configuration is unnecessarily difficult to read. You can edit your post by using the button. (And disable HTML when posting HTML.)
 
David Newton
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you're just generating text, send it as a post parameter, just like any other form field.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic