Hello everyone,

I am trying to paginate the table below using this plug in. http://neoalchemy.org/tablePagination.html

However, I the table did not show properly and I think it still counting the hidden fields.

Can you please advise how to solve this or provide an alternative way to do this.

Thanks in advance.

<table>
  <thead>
    <th>Header</th>
  </thead>
  <tbody>
    <tr>
      <td>Val1</td>
    </tr>
    <tr style="display:none">
      <td>Val1</td>
    </tr>    
  </tbody>
  <tbody>
    <tr>
      <td>Val1</td>
    </tr>
    <tr style="display:none">
      <td>Val1</td>
    </tr>  
  </tbody>
  <tbody>
    <tr>
      <td>Val1</td>
    </tr>
    <tr style="display:none">
      <td>Val1</td>
    </tr>      
  </tbody>
  <tbody>
    <tr>
      <td>Val1</td>
    </tr>
    <tr style="display:none">
      <td>Val1</td>
    </tr>      
  </tbody>
  <tbody>
    <tr>
      <td>Val1</td>
    </tr>
    <tr style="display:none">
      <td>Val1</td>
    </tr>      
  </tbody>
</table>

Recommended Answers

All 2 Replies

Member Avatar for stbuchok

Why do you have multiple tbody?

Thanks for the reply. This table is generated by the ASP.NET when using HTMLGenericControl and this is how ASP.NET construct.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.