• 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

my custom tag inside struts tag.

 
Ranch Hand
Posts: 48
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I made a simple tag to format dates and tried to incorporate this tag inside of a <html:text > tag. It does not render my custom jstl tag?
Is there a solution to this?
 
Ranch Hand
Posts: 326
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This probably isn't the solution you're looking for...but
I tried to set the value of a html:text tag,

but the value was not rendered, or, most likely, it was, but when struts populated the form, it overwrote the value with the one from the bean (an empty String in my case).
A possible solution: format your date on the servlet side rather than the display side, such that it's ready to be displayed when it gets there.
Maybe not as cool as a custom tag, but it'll work.
[ January 12, 2004: Message edited by: Ray Stojonic ]
reply
    Bookmark Topic Watch Topic
  • New Topic