Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 850633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T07:17:42+00:00 2026-05-15T07:17:42+00:00

With h:datatable we can display data as follows Jems tom chirs harry but can

  • 0

With h:datatable we can display data as follows

  1. Jems
  2. tom
  3. chirs
  4. harry

but can I display the same as shown below:

  1. Jems 2. tom
  2. chris 4. harry

Ragards,
Abhi

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T07:17:42+00:00Added an answer on May 15, 2026 at 7:17 am

    You can use t:dataTable component that support “newspaperColumns” and “newspaperOrientation” attributes. newspaperColumns determine the number of columns the table will be divided over and newspaperOrientation the orientation of the newspaper columns in the newspaper table.

    In your example, the bean:

    public class Bean {
        public List<String> getPeople() {
            List<String> people = new ArrayList<String>();
            people.add("Jems");
            people.add("tom");
            people.add("chirs");
            people.add("harry");
            return people;
        }
    }
    

    And JSF:

    <t:dataTable var="person" value="#{bean.people}" rowIndexVar="index"
                 newspaperOrientation="horizontal" newspaperColumns="2">
        <h:column>
            <h:outputText value="#{index + 1}"/>
        </h:column>
        <h:column>
            <h:outputText value="#{person}"/>
        </h:column>
    </t:dataTable>
    

    Render as:

    <table>
      <tbody id="_id13:tbody_element">
        <tr><td>1</td><td>Jems</td><td>2</td><td>tom</td></tr>
        <tr><td>3</td><td>chirs</td><td>4</td><td>harry</td></tr>
      </tbody>
    </table>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I load a CSV file into a System.Data.DataTable , creating the datatable
How can we copy one datacolumn with data from one datatable to another datatable
Can an Ajax-enabled WCF Service pass back a DataTable as a Sys.Data.DataTable? Like this
I am retrieving data from a SQL table so I can display the result
I would like to create table which can display data from database into JSF
I am trying to use the YUI datatable to display data from a JSON
I have managed to display data in one column table, but would like to
I have binded the accdb to combobox but it can not bind the data
How can I filter data from dataset to datatable? like the code-> DataRow[] dr
Datatable on the page can be filtered by user input. Entered string is received

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.