bharathi
bharathi

Reputation: 6271

Include a rich calendar in JSF

Can anyone helpme how to create a rich calendar in JSF.The sample project created using maven

Following is my code

default.xhtml

<rich:calendar id="dtDOB" 
  datePattern="yyyy-MM-dd" required="true" 
  label="startcalender"  >
</rich:calendar>

I am getting the following error.

Warning: This page calls for XML namespace http://richfaces.org/rich declared
with prefix rich but no taglibrary exists for that namespace. 

I know I have to missed somthing in web.xml file. Weather I have to add some <dependency> in the pom.xml file.

Upvotes: 0

Views: 2065

Answers (1)

java
java

Reputation: 111

You must have not added Richfaces libraries in your project . GO http://docs.jboss.org/richfaces/latest_3_3_X/en/devguide/html/GettingStarted.html

Upvotes: 3

Related Questions