Skip to content

Commit 69a94ef

Browse files
Zhuk, AlexanderZhuk, Alexander
authored andcommitted
text & links update
1 parent 3dff3cb commit 69a94ef

File tree

4 files changed

+24
-20
lines changed

4 files changed

+24
-20
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Demo Bootstrap: http://angular-data-grid.github.io/demo/bootstrap/
66

77
Demo Material: http://angular-data-grid.github.io/demo/material/
88

9+
Demo 100k: http://angular-data-grid.github.io/demo/100k/
10+
911
### Features
1012
- Does not have any hard-coded template so you can choose any mark-up you need, from basic `<table>` layout to any `<div>` structure.
1113
- Easily switch between the most popular Bootstrap and Google Material theming, or apply your own CSS theme just by changing several CSS classes.

demo/100k/index.html

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head lang="en">
44
<meta charset="UTF-8">
5-
<title>Angular Data Grid - Bootstrap Design</title>
5+
<title>Angular Data Grid - 100k example</title>
66
<link rel="icon" href="https://angularjs.org/favicon.ico" type="image/x-icon">
77
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
88
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -12,14 +12,16 @@
1212
<nav class="navbar navbar-inverse">
1313
<div class="container">
1414
<a href="#" class="navbar-brand">Angular Data Grid - 100k Example</a>
15+
<ul class="nav navbar-nav navbar-right">
16+
<li><a href="../bootstrap/">Basic demo</a></li>
17+
</ul>
1518
</div>
1619
</nav>
1720
<div class="container">
1821
<div>
1922
<h3>Angular Data Grid 100k Example</h3>
20-
Features enabled: sorting, filtering (using both in-grid and external controls), sync with browser URLs,
21-
pagination and items-per-page functionality.
22-
Angular UI Datepicker used for date controls, although you can use any other framework, plugin or styling.
23+
This demonstrates client-side sorting / pagination / filtering performance of the data grid with <strong>100 000 rows</strong> loaded at once.
24+
It's not likely that someone will need to operate so huge data at client side in a real life, but for performance testing purposes it definitely works)
2325
<a href="https://github.com/angular-data-grid/angular-data-grid.github.io" target="_blank">Project GitHub</a>
2426
</div>
2527
<hr>
@@ -104,8 +106,8 @@ <h3>Angular Data Grid 100k Example</h3>
104106
<div class="col-md-12">
105107
<div grid-data id='test' grid-options="gridOptions" grid-actions="gridActions">
106108
<div class="row">
107-
<div class="col-md-3">
108-
<span class="items">{{filtered.length}} users total</span>
109+
<div class="col-md-3" ng-cloak>
110+
<span class="items" ng-bind="filtered.length">{{filtered.length}} users total</span>
109111
<div>Time stats</div>
110112
<div>Copy time: {{_time.copy}}</div>
111113
<div>Filter time: {{_time.filters}}</div>
@@ -190,18 +192,18 @@ <h3>Angular Data Grid 100k Example</h3>
190192
</div>
191193
</div>
192194
<hr>
193-
<div>
194-
<button class="btn btn-info margin-bottom-basic" ng-click="showCode = !showCode">CodePen</button>
195-
<div ng-show="showCode">
196-
<p data-height="768" data-theme-id="21603" data-slug-hash="xZddZm" data-default-tab="html"
197-
data-user="AngularDataGrid" class='codepen'>See the Pen <a
198-
href='http://codepen.io/AngularDataGrid/pen/xZddZm/'>xZddZm</a> by AngularDataGrid (<a
199-
href='http://codepen.io/AngularDataGrid'>@AngularDataGrid</a>) on <a href='http://codepen.io'>CodePen</a>.
200-
</p>
201-
<script async src="//assets.codepen.io/assets/embed/ei.js"></script>
202-
</div>
203-
</div>
204-
<hr>
195+
<!--<div>-->
196+
<!--<button class="btn btn-info margin-bottom-basic" ng-click="showCode = !showCode">CodePen</button>-->
197+
<!--<div ng-show="showCode">-->
198+
<!--<p data-height="768" data-theme-id="21603" data-slug-hash="xZddZm" data-default-tab="html"-->
199+
<!--data-user="AngularDataGrid" class='codepen'>See the Pen <a-->
200+
<!--href='http://codepen.io/AngularDataGrid/pen/xZddZm/'>xZddZm</a> by AngularDataGrid (<a-->
201+
<!--href='http://codepen.io/AngularDataGrid'>@AngularDataGrid</a>) on <a href='http://codepen.io'>CodePen</a>.-->
202+
<!--</p>-->
203+
<!--<script async src="//assets.codepen.io/assets/embed/ei.js"></script>-->
204+
<!--</div>-->
205+
<!--</div>-->
206+
<!--<hr>-->
205207
</div>
206208
</body>
207209
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>

demo/bootstrap/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<a href="index.html"><strong>Bootstrap Design</strong></a>
2222
</li>
2323
<li>
24-
<a href="../material/index.html">Material Design</a>
24+
<a href="../material/">Material Design</a>
2525
</li>
2626
</ul>
2727
</div>

demo/material/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</md-button>
2525
<md-menu-content>
2626
<md-menu-item>
27-
<a href="../bootstrap/index.html">Bootstrap Design</a>
27+
<a href="../bootstrap/">Bootstrap Design</a>
2828
</md-menu-item>
2929
<md-menu-item>
3030
<a href="index.html"><strong>Material Design</strong></a>

0 commit comments

Comments
 (0)