jquery.bootgrid

WebJar for jquery.bootgrid

License

License

MIT
GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

jquery-bootgrid
Last Version

Last Version

1.3.1
Release Date

Release Date

Type

Type

jar
Description

Description

jquery.bootgrid
WebJar for jquery.bootgrid
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/rstaib/jquery-bootgrid

Download jquery-bootgrid

How to add to project

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

Dependencies

compile (2)

Group / Artifact Type Version
org.webjars.bower : jquery jar [1.9.0,)
org.webjars.bower : bootstrap jar [3.1.1,)

Project Modules

There are no modules declared in this project.

jQuery Bootgrid Plugin Build Status Bower version NuGet version NPM version Gratipay

Nice, sleek and intuitive. A grid control especially designed for bootstrap.

Getting Started

jQuery Bootgrid is a UI component written for jQuery and Bootstrap (Bootstrap isn't necessarily required).

Everything you need to start quickly is:

  1. Include jQuery, jQuery Bootgrid and Bootstrap libraries in your HTML code.
  2. Define your table layout and your data columns by adding the data-column-id attribute.
  3. Specify your data URL used to fill your data table and set ajax option to true directly on your table via data API.
<!DOCTYPE html>
<html>
    <head>
        <title>Demo</title>
        <meta charset="utf-8">
        <!-- Styles -->
        <link href="bootstrap.css" rel="stylesheet">
        <link href="jquery.bootgrid.css" rel="stylesheet">
    </head>
    <body>
        <table id="grid" data-toggle="bootgrid" data-ajax="true" data-url="/api/data/basic" class="table table-condensed table-hover table-striped">
            <thead>
                <tr>
                    <th data-column-id="id">ID</th>
                    <th data-column-id="name">Sender</th>
                </tr>
            </thead>
        </table>
        <!-- Scripts -->
        <script src="jquery.js"></script> 
        <script src="jquery.bootgrid.js"></script>
    </body>
</html>

For more information check the documentation.

Examples

Examples you find here.

Reporting an Issue

Instructions will follow soon!

Asking questions

I'm always happy to help answer your questions. The best way to get quick answers is to go to stackoverflow.com and tag your questions always with jquery-bootgrid.

Contributing

Instructions will follow soon!

License

Copyright (c) 2014-2015 Rafael J. Staib Licensed under the MIT license.

Versions

Version
1.3.1
1.2.0