Hello,
we want to overwrite Trinidad's default SelectRangeChoiceRenderer. We
already do this with other renderer. We have a class ExtendedCoreRenderKit
extends CoreRenderKit. In the constructor we are
calling the RenderKitBase's addRenderer(String family, String rendererType,
Renderer renderer)
Example:
addRenderer("org.apache.myfaces.trinidad.Tree",
"org.apache.myfaces.trinidad.Tree", new TreeRenderer());
Everything's working fine so far, but I can't seem to find the right family
and rendererType for the
SelectRangeChoice (the "pager" to navigate through huge tables...).
This is what I considered my best guess:
addRenderer("org.apache.myfaces.trinidad.SelectRange",
"org.apache.myfaces.trinidad.CoreSelectRangeChoiceBar",
new MySelectRangeChoiceBarRenderer());
Only it doesn't seem to be good enough. I always get Trinidad's default
renderer.
No exception thrown or anything which leaves me quite clueless.
If anyone knows the right parameters, please let me know.
Thanks a lot, Carsten
--
View this message in context:
http://old.nabble.com/-TRINIDAD--Family-and-component-type-for-SelectRangeChoiceRenderer-tp26498105p26498105.html
Sent from the MyFaces - Users mailing list archive at Nabble.com.