• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Multi dimentional checkboxes

 
Ranch Hand
Posts: 44
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I want to show the checkbox list (say 30 languages) in 10 rows X 3 columns format.

Currently i am using h:selectManyCheckbox. One of the attribute for this tag "layout" has only two options pageDirection / lineDirection.
With those options the checkboxes can be arranged in 'n' rows X '1' column or '1' row X 'n' column format.

Is there any other way to satisfy this requirement? Your help is much appreciated.

Regards,
Atul Samnerkar
 
Ranch Hand
Posts: 327
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A h:panelGrid with 3 columns and then the values broken up into three sets and shown in 3 selectManyCheckboxes using pageDirection ?
or
The values broken up into three set and shown in 3 selectManyCheckbox using lineDirection? This may not line things up neatly, though.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic