Linked Questions
34 questions linked to/from How to make a grid of JSF composite component?
0 votes
0 answers
479 views
Create JSF component tree from a String template
Mojara 2.1.21, Primefaces 3.5.11, Omnifaces 1.5 I have a text saved in Java String: this is my text with markers {1} second row {2} .... Each marker has associated value (ex. {1} => 23, {2} => 45) ...
0 votes
1 answer
358 views
JSF Multiple components in grid
I am trying to get the reusable group of jsf 1.2 components inside a panelgrid using Facelet tag file. @Balusc's previous answer at How to make a grid of JSF composite component? was a fabulous ...
1 vote
0 answers
270 views
Trouble using f:ajax in composite component that defines an html list
My setup is the following: I have a composite component (taskEntry) inside another (taskList). <ul class="tableView"> <ui:repeat value="#{cc.attrs.taskList}" var="task"&...
0 votes
0 answers
69 views
Refactoring ui:includes to ui:components
I used to have a bunch of <ui:composition> templates and include them by <ui:include src="${bean.type}.xhtml"> <ui:param name="model" value="#{model}"/> </ui:include> ${...