• 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
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

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 ]
 
Does this tiny ad smell okay to you?
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic