How to extend the functionality of Richfaces components for example Data table with custom header and sorting techniques. i have seen extended data table but did not get much information from it. Please point me to an example if at it is available.

Thanks

Soma

link|improve this question

14% accept rate
feedback

1 Answer

Well, you can extend a JSF component with the regular java extension (extends). You will have to extend a number of classes, depending on the exact component:

  • UIComponentName/HtmlComponentName
  • HtmlComponentNameRenderer
  • ComponentNameTag

and you might need to register the renderer in faces-config.xml.

You can take a look at this thread, or google for "Extend JSF component" or "Create custom JSF component".

link|improve this answer
Thanks for the reply. I am specifically looking for richfaces custom component. I believe i have to create a JSPX file and some java scripts also for my functionality. i think they have CDK(component development kit). I am trying to understand it in detail. It is good if there are any examples. – SomaSekhar Mar 1 '10 at 12:17
1  
@SomaSekhar A guy at my company extended the rich:calendar control doing what Bozho mentioned. Have you had any luck so far? – Jon Dec 6 '10 at 20:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.