
Security News
Potemkin Understanding in LLMs: New Study Reveals Flaws in AI Benchmarks
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
angular-table-sticky-header
Advanced tools
A directive that keeps thead and tfoot sections in tables always visible.
Angular TableStickyHeader is an AngularJS directive that keeps the thead
and tfoot
sections of a table
always visible, while the table itself gets a scrollbar.
Note: This library is for AngularJS 1.x only!
Angular TableStickyHeader depends on AngularJS 1.x and jQuery 3.x.
npm
: npm install --save angular-table-sticky-header
git
: git clone git@github.com:anx-astocker/angular-table-sticky-header.git
In the following example we have a table with hard-coded content. In real life you might use data binding to fill the tables content.
Include the javascript and stylesheet files in your HTML:
<html>
<head>
<link href="node_modules/angular-table-sticky-header/dist/ngtablestickyheader.min.css" rel="stylesheet">
<script src="node_modules/angular-table-sticky-header/dist/ngtablestickyheader.min.js"></script>
</head>
<body>
...
</body>
</html>
Declare dependency on Angular TableStickyHeader for your main application:
(function() {
var app = angular.module('app', [
'ngTableStickyHeader'
])
})();
This is how to create the table:
<table table-sticky-header>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>First name 1</td>
<td>Last name 1</td>
</tr>
<tr>
<td>First name 2</td>
<td>Last name 2</td>
</tr>
<tr>
<td>First name 3</td>
<td>Last name 3</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
</tfoot>
</table>
Additional information regarding the table-sticky-header
directive:
thead
and tfoot
sections via CSS transform in the visible area.thead
and tfoot
gets recalculated on each digest as well as on scroll and resize events.Angular TableStickyHeader, Copyright 2017 Andreas Stocker, MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
A directive that keeps thead and tfoot sections in tables always visible.
The npm package angular-table-sticky-header receives a total of 0 weekly downloads. As such, angular-table-sticky-header popularity was classified as not popular.
We found that angular-table-sticky-header demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.