• 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

DataGrid Sample Code

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi friends I am new to this forum..............

I googled for sample codes of Jsf datagrid but i didnt find any.
can you please help me if you know any links. help me please.

 
Ranch Hand
Posts: 99
MyEclipse IDE Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Not sure if there is any in JSF. Use RichFaces extension for that. You will find a datagrid and much more useful stuff there.
 
Krish Gulivs
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Akaine Harga wrote:Not sure if there is any in JSF. Use RichFaces extension for that. You will find a datagrid and much more useful stuff there.



Thank you for your information.But you are saying abour richfaces.............
I dont abour richfaces.Can you bit explain more.
 
Saloon Keeper
Posts: 27752
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
h:panelGrid is the core JSF tag, and it allows organizing the View components in a 2-dimensional regular structure equivalent to the HTML table (which is what it renders as).

rich:dataGrid is an enhancement to this concept that melds the abilities of h:panelGrid and h:dataTable. Unlike the panelGrid, it binds a linear sequence of items (list model) to the view. Unlike the dataTable, it allows this sequence to be displayed in a 2-D array of cells, instead of in 1-Dimensional rows.

RichFaces is an open-source product of Red Hat/JBoss that supplies extensions to the core JSF tagset with enhanced abilities, including extensive AJAX support. I think you can find the details from the main http://jboss.org webpage.
 
reply
    Bookmark Topic Watch Topic
  • New Topic