• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

All HTML Tags Available for Struts?

 
Ranch Hand
Posts: 515
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are all HTML tags supported by struts? Or are there some that need to be overridden by struts. Example. I know we use the <FORM:TEXT> for input.. but if I wanted, could I use <input>?
 
Ranch Hand
Posts: 81
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The tag classes inside of struts are just recommendations. You can use any html tag that you would like to.

Best of Luck,

Nate
 
pie sneak
Posts: 4727
Mac VI Editor Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The main purpose for the majority of the struts html taglib are for prepopulation of the fields on your page. Very handy, indeed.
 
Ranch Hand
Posts: 329
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
QUOTE] The main purpose for the majority of the struts html taglib are for prepopulation of the fields on your page. Very handy, indeed.


This may sound like a stupid question but prepopulating your fields with what?[
 
Ronnie Phelps
Ranch Hand
Posts: 329
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Oops..I made a typo in the last post...

The main purpose for the majority of the struts html taglib are for prepopulation of the fields on your page. Very handy, indeed.




This may sound like a stupid question but prepopulating your fields with what?
 
Marc Peabody
pie sneak
Posts: 4727
Mac VI Editor Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
With data from your model.

At the very least, most people will use prepopulation for validation. When you return to the page with errors you want your submitted values to be there still. Without prepopulation, all your fields would be empty every time you return to the page.
 
reply
    Bookmark Topic Watch Topic
  • New Topic