Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
angular-scrollable-table
Advanced tools
A fixed-header scrollable table which auto-truncates overly-long headers, has resizable columns and sortable headers
Yet another table directive for AngularJS.
This one features a fixed header that elegantly handles overly-long column header names.
Other features:
npm install angular-scrollable-table
OR
bower install angular-scrollable-table
angular.module('myApp', ['scrollable-table', ...]);
<scrollable-table watch="visibleProjects">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th sortable-header col="facility">Facility</th>
...
</tr>
</thead>
<tbody>
<tr ng-repeat="proj in visibleProjects" row-id="{{ proj.facility }}"
ng-class="{info: selected == proj.facility}" >
<td>{{ proj.facility }}</td>
...
</tr>
</tbody>
</table>
</scrollable-table>
where the controller contains
$scope.visibleProjects = [{
facility: "Atlanta",
code: "C-RD34",
cost: 540000,
conditionRating: 52,
extent: 100,
planYear: 2014
}, ...];
$scope.$watch('selected', function(fac) {
$scope.$broadcast("rowSelected", fac);
});
})
Third-party dependencies:
Demo here: https://jsfiddle.net/alalonde/BrTzg/
More infomation here: http://blog.boxelderweb.com/2013/12/19/angularjs-fixed-header-scrollable-table/
License: MIT
How do I change the height of the table?
FAQs
A fixed-header scrollable table which auto-truncates overly-long headers, has resizable columns and sortable headers
We found that angular-scrollable-table demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.