• 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

Issue with my webApp

 
Ranch Hand
Posts: 36
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Greetings,

I'm currently trying to get my JSF web app to work but I'm getting the following parsing error:
[javadoc]Error Parsing /viewMetadata/index.xhtml: Error Traced[line: 49] The element type "h:panelGrid" must be terminated by the matching end-tag "</h:panelGrid>".

Caused by:
javax.faces.view.facelets.FaceletException - Error Parsing /viewMetadata/index.xhtml: Error Traced[line: 49] The element type "h:panelGrid" must be terminated by the matching end-tag "</h:panelGrid>".
[/javadoc]

this is my index.xhtml code, I don't see anything wrong at all...
 
Ranch Hand
Posts: 101
Spring Flex Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Problem is here

<h:selectOneMenu value="#{RegistrationForm.gender}"/>
<f:selectItem itemLabel="Male" itemValue="M"/>
<f:selectItem itemLabel="Female" itemValue="F"/>
</h:selectOneMenu>
 
Omar Perez
Ranch Hand
Posts: 36
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you very much.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic