d-scrollable-table
Scrollable table with fixed (floating) thead and N first column(s)
Usage
app.component( require('d-scrollable-table') );
There are 2 ways to set up scroll handling:
1. (preferred) Bind to container's scroll event
<div style="overflow: auto" on-scroll="scrollable.scroll($element)">
<view is="d-scrollable-table" as="scrollable"></view>
<table>
<tbody>
<tr>
<th>Fixed 1</th>
<th>Fixed 2</th>
<th>Fixed 3</th>
<td>Normal</td>
<td>Normal</td>
<td>Normal</td>
</tr>
<tr>
</tr>
</tbody>
<thead>
<tr>
<th>...</th>
<th>...</th>
<th>...</th>
<tr>
</thead>
</table>
</div>
2. Bind to the table itself
<view is="d-scrollable-table" as="scrollable"
on-create="scrollable.scrollParent($controller.table)"></view>
<table as='table'>
</table>
Options
-
hiddenClass
specifies the class name of hidden <tr>
s.
It's used in <th>
-search algorithm that determines
the amount of columns to make float.
By default it's u-hidden
, so all <tr>
s with this class
will be omitted.
-
update
is any variable that you can pass to listen for
its changes and force update the table (useful when your
columns may change dynamically)
Licence
MIT