Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Velocity tags are extensions of the generic Struts Tags provided by the framework. You can get jump right in just by knowing the structure in which the tags can be accessed: #s-*tag *(...) ... #end, where tag is any of the Struts Tags supported by the framework.

...

Code Block
xml
xml
titleVM Form
#s-form#sform ("action=updatePerson")
    #s-textfield#stextfield ("label=First name" "name=firstName")
    #s-submit#ssubmit ("value=Update")
#end

Block and Inline Tags

...