• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

selectManyCheckbox and own layout?

 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i do not understand the strong coupling between layout and the data in JSF.
I want to display several rows of checkboxes,
like below where
C=a checkbox,
N= the displayed name of the checkbox
BAR=a column where some calculated values are displayed (e.g. a bar with the length corresponding to how many times the name display in some text)

C N BAR
C N BAR
C N BAR

I try to use t:selectManyCheckbox, but I does not seem to have any layout controls. I can do
<t:selectManyCheckbox id="alist" layout="pageDirection"
value="#{searchCriteria_backing.mediaTypes}"
border="0">

and will have the rows generated, but how can I add a column of my own?

any ideas how I can achieve this?
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic