angular-tablescroll

WebJar for angular-tablescroll

License

License

MIT
Categories

Categories

Angular User Interface Web Frameworks
GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

angular-tablescroll
Last Version

Last Version

2.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

angular-tablescroll
WebJar for angular-tablescroll
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/mike-allison/angular-tablescroll

Download angular-tablescroll

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bower/angular-tablescroll/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>angular-tablescroll</artifactId>
    <version>2.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/angular-tablescroll/
implementation 'org.webjars.bower:angular-tablescroll:2.0.0'
// https://jarcasting.com/artifacts/org.webjars.bower/angular-tablescroll/
implementation ("org.webjars.bower:angular-tablescroll:2.0.0")
'org.webjars.bower:angular-tablescroll:jar:2.0.0'
<dependency org="org.webjars.bower" name="angular-tablescroll" rev="2.0.0">
  <artifact name="angular-tablescroll" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='angular-tablescroll', version='2.0.0')
)
libraryDependencies += "org.webjars.bower" % "angular-tablescroll" % "2.0.0"
[org.webjars.bower/angular-tablescroll "2.0.0"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.bower : angular jar [1.2.0,)

Project Modules

There are no modules declared in this project.

angular-tablescroll

A powerful Angular 1.x table attribute directive that automates scrolling and fixed headers and footers.

By default it will size a table to its parent container, fix the position of the header and footer, add horizontal and vertical scrolling as needed, and resize reactively to window resize events.

Homepage

http://mikeallisononline.com

Demo

https://plnkr.co/edit/fdlS8BZhgTVE237I04kY?p=preview

Install

(bower): bower install angular-tablescroll
(npm): npm install angular-tablescroll
(nuget): Install-Package angular-tablescroll

License

MIT

Copyright

2015 Mike Allison

Example Table

<table ng-tablescroll="options">
    <thead>
        <tr>
            <th>Column 1</th>
            <th>Column 2</th>
            <th>Column 3</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Data 1</td>
            <td>Data 2</td>
            <td>Data 3</td>
        </tr>
    </tbody>
    <tfoot>
        <tr>
            <td>Foot 1</td>
            <td>Foot 2</td>
            <td>Foot 3</td>
        </tr>
    </tfoot>
</table>

Javascript

angular.module('yourAppName', ['ngTablescroll']);

Options (optional Scope object)

{
    reactive: (bool)(optional)(default: true) enable reactive sizing to parent control
    width: (int)(optional) desired max width in pixels
    height: (int)(optional) desired height in pixels
    backgroundcolor: (string)(optional)(default: #fffff) table header bg color
}
org.webjars.bower

Mike Allison

Versions

Version
2.0.0