RE: [TRINIDAD] Family and component type for SelectRangeChoiceRenderer

2010-04-08 Thread Carsten Pieper
Hi Keith, I hope I got your question right. This is the render-kit entry from our faces-config.xml render-kit render-kit-idde.continentale.vu.jsf.base.core/render-kit-id

RE: [TRINIDAD] Family and component type for SelectRangeChoiceRenderer

2010-04-07 Thread Keith Carlton
Carsten, I am working on a similar problem, can you please post your xml addition to the faces-config.xml that get the renderer to see you renderKit? Thanks, Keith Carsten Pieper wrote: If anyone is interested, here's the solution to the problem. I did exactly what Harald advised

RE: [TRINIDAD] Family and component type for SelectRangeChoiceRenderer

2009-11-25 Thread Kuhn, Harald
- From: Mamallan Uthaman [mailto:mamallan.utha...@oracle.com] Sent: Tuesday, November 24, 2009 7:47 PM To: MyFaces Discussion Subject: Re: [TRINIDAD] Family and component type for SelectRangeChoiceRenderer Hi Carsten, Please try below for selectRangeChoicebar: component-family

RE: [TRINIDAD] Family and component type for SelectRangeChoiceRenderer

2009-11-25 Thread Carsten Pieper
Thank you guys! @Harald: I.e. the renderer org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.TableRenderer has a static private class NavBar extends SelectRangeChoiceBarRenderer That's a very good hint. So probably I'm just writing our own TableRenderer and put our stuff directly

RE: [TRINIDAD] Family and component type for SelectRangeChoiceRenderer

2009-11-25 Thread Carsten Pieper
If anyone is interested, here's the solution to the problem. I did exactly what Harald advised (writing our own TableRenderer whose inner private class NavBar extends MySelectRangeChoiceRenderer). But as TableRenderer is an abstract class I also had to write our own version of the

Re: [TRINIDAD] Family and component type for SelectRangeChoiceRenderer

2009-11-24 Thread Mamallan Uthaman
Hi Carsten, Please try below for selectRangeChoicebar: component-family = org.apache.myfaces.trinidad.SelectRange renderer-type = org.apache.myfaces.trinidad.ChoiceBar Thanks Mamallan Carsten Pieper wrote: Hello, we want to overwrite Trinidad's default SelectRangeChoiceRenderer. We already