• 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

JSF error using selectOneListbox

 
Ranch Hand
Posts: 36
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am using JSF 1.1 and am trying to get a selectOneListbox to work. I get this error:

org.apache.jasper.JasperException: /Project_uifields.jsp(53,8) Attribute itemvalue invalid for tag selectItem according to TLD

The error appears to be in this code:

<h:selectOneListbox id="pickField" size="7">
<f:selectItem itemValue="Environment" itemLabel="Environment"/>
<f:selectItem itemvalue="Status" itemLabel="Status"/>
<f:selectItem itemvalue="Priority" itemLabel="Priority"/>
<f:selectItem itemvalue="Release" itemLabel="Release"/>
<f:selectItem itemvalue="Issue Type" itemLabel="Issue Type"/>
<f:selectItem itemvalue="Function" itemLabel="Function"/>
<f:selectItem itemvalue="Module" itemLabel="Module"/>
</h:selectOneListbox>

What am I doing wrong?
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic