jsf 2 - How to specify the type of wrapper for JSF custom component? -
i need create custom component selectoneradio, should not has wrapper <table>
but, <ul>, <li>
example. how can specify type of wrapper, ul, table or else, when creating jsf custom components?
there seems conceptual misunderstanding. there's no such thing "wrapper" in context. html generated renderer
associated uicomponent
. if you'd change generated html representation, supply own custom renderer
.
that said, it's advisable learn jsf decent book basic concepts right beginning on. creating custom components covered in such book.
Comments
Post a Comment