• 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

JSF layout

 
Greenhorn
Posts: 21
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Some people mention that we haven't full control over look and feel in JSF, is it right?
 
Saloon Keeper
Posts: 27807
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, technically, JSF is supposed to be isolated from the look and feel - that stuff should all goes into the renderkit layer. The standard HTML renderkit then attempts to defer to CSS where possible, which ultimately passes it out of the domain of JSF entirely.

However, the other consideration about JSF is what it allows you to construct. JSF is fairly abstract - for example, the datatable construct as opposed to doing iterations in the view. In the sense that there's only a fairly small number of constructs, that's limiting. On the other hand, it's an extensible system.

So I suppose it depends. :p
 
reply
    Bookmark Topic Watch Topic
  • New Topic