• 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

do jstl tags play nicely with struts tags???

 
Greenhorn
Posts: 26
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to use jstl c ut tags to set the values for my html:multibox value attributes, but I keep getting a "Attribule ${attribute} has no value" error. Any ideas what's going on here and what I need to do to get this to work?
 
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
This sounds like a good question for Peter den Haan!
 
Matt Sloan
Greenhorn
Posts: 26
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
still trying to figure out a solution here...
 
Ranch Hand
Posts: 157
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you trying to do something like this
<html:multibox property="somProperty" value="<c: out value="${someEL}" />" ?

If so, then I don't think it will work. The value attribute can have
- static content OR
- JSP Expression <%= %>
Can it have another tag as its content?

[Edit] Try using a normal JSP Expression for the value attribute.
[ September 12, 2004: Message edited by: Sheldon Fernandes ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic