Responsive tables allow us to display some values in a table. The table is optional and you can create columns and fields as you wish. It is used mainly in CRD in indes.php to represent values and functionalities.
It is used by copying the code below, and then pastes it into your application or website. Before that, you can use our CSS and JS to make certain functionalities work for you. These are the addressees:
<link rel="stylesheet" href="www.sensationenergy.com/se_css/se.css>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="www.sensationenergy.com/js_css/se.js"></script>
Id | Name | Year | |
---|---|---|---|
Id | Name | Year |
<div class="tabela">
<table class="table1">
<thead>
<tr>
<th scope="col">Id</th>
<th scope="col">Name</th>
<th scope="col">Email</a></th>
<th scope="col">Year</th>
</tr>
</thead>
<tbody>
<tr>
<td data-title="Id">Id</td>
<td data-title="Name">Name</td>
<td data-title="Email">Email</td>
<td data-title="year">Year</td>
</tr>
</tbody>
</table>
</div>