Nice, sleek and intuitive. A grid control especially designed for bootstrap.
jQuery Bootgrid is a UI component written for jQuery and Bootstrap (Bootstrap isn't necessarily required).
Everything you need to start quickly is:
- Include jQuery, jQuery Bootgrid and Bootstrap libraries in your HTML code.
- Define your table layout and your data columns by adding the
data-column-id
attribute. - 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 you find here.
Instructions will follow soon!
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.
jquery-bootgrid uses npm to install its own dependencies, and mono to build a NuGet package.
You should install both using your package manager. On macOS, this works as follows:
brew install npm
brew install mono
From the folder that jquery-bootgrid resides in, run:
npm install .
sudo npm install -g grunt
grunt
If you are done with your modifications, you should increase the version number in boewer.json and package.json, update the changelog, and then run:
grunt release
No instructions yet.
Copyright © 2014-2015 Rafael J. Staib Copyright © 2018 Deciso B.V.
Licensed under the MIT license.