Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Table scroll with fixed first column

Tags:

html

jquery

css

I'm trying to get the table to scroll left/right on button click keeping the first column in it's place. My data is all in one table so I can't create two tables instead of one. Is there any way of doing this? See fiddle below.

jQuery:

$(document).ready(function() {
  $("#right").on("click", function() {
    var position = $("table").position();
    $("table").animate({
      left: position.left - 200
    }, 800);
  });
});
$("#left").on("click", function() {
var position = $("table").position();
 $("table").animate({
   left: position.left + 200
 }, 800);
});

CSS:

#table-wrapper {
width: 95%;
float: left;
overflow-x: scroll;
background: #ddd;

}

table {
 background: #fff;
 width: 1200px;
 text-align:center;
 overflow: hidden;
 position:relative;
}
table thead tr th:first-child,
table tbody tr td:first-child {
 background: yellow;
 top: auto;
 left: 0.5;
 position: absolute;
 width: 6em;
}

HTML:

<button id="left">&larr;</button>
<button id="right">&rarr;</button>

<div id="table-wrapper">
  <table border="1">
    <thead>
      <tr>
        <th>Heading1</th>
        <th>Heading2</th>
        <th>Heading3</th>
        <th>Heading4</th>
        <th>Heading5</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>1</td>
        <td>12</td>
        <td>13</td>
        <td>14</td>
        <td>15</td>
      </tr>
      <tr>
        <td>2</td>
        <td>22</td>
        <td>23</td>
        <td>24</td>
        <td>25</td>
      </tr>
      <tr>
        <td>3</td>
        <td>32</td>
        <td>33</td>
        <td>34</td>
        <td>35</td>
      </tr>
    </tbody>
  </table>
</div>

Here is my fiddle.

like image 516
agri Avatar asked Oct 19 '22 13:10

agri


1 Answers

Here a Working Fiddle

Use this css position:fixed to fix the elements.

Make the below mentioned change

table thead tr th:first-child,
table tbody tr td:first-child {
  background: yellow;
  top: auto;
  position:fixed;  /*change this*/
  left: 0.5;
  width: 6em;
}

Also you have to change your Jquery a little bit. The issue is with the selectors.

In your Jquery replace $("table") with $("#table-wrapper") because its the table-wrapper having the scroll and not the table.

like image 154
Rajshekar Reddy Avatar answered Oct 21 '22 06:10

Rajshekar Reddy