diff --git a/README.md b/README.md
index 05d49aa..47efc75 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,8 @@ Demo Bootstrap: http://angular-data-grid.github.io/demo/bootstrap/
Demo Material: http://angular-data-grid.github.io/demo/material/
+Demo 100k: http://angular-data-grid.github.io/demo/100k/
+
### Features
- Does not have any hard-coded template so you can choose any mark-up you need, from basic `
` layout to any `
` structure.
- Easily switch between the most popular Bootstrap and Google Material theming, or apply your own CSS theme just by changing several CSS classes.
diff --git a/demo/100k/css/angular-data-grid.bootstrap.css b/demo/100k/css/angular-data-grid.bootstrap.css
new file mode 100644
index 0000000..2d4f7b2
--- /dev/null
+++ b/demo/100k/css/angular-data-grid.bootstrap.css
@@ -0,0 +1,26 @@
+.table > thead > tr > th {
+ vertical-align: middle; }
+
+.p-t-8 {
+ padding-top: 8px; }
+
+.margin-bottom-basic {
+ margin-bottom: 15px; }
+
+.pagination {
+ margin: 0; }
+
+.items-per-page {
+ margin-left: 15px; }
+
+.sortable:after {
+ font: 14px/1 FontAwesome;
+ content: "\f0dc"; }
+
+.sortable.sort-ascent:after {
+ content: '\f0de';
+ vertical-align: bottom; }
+
+.sortable.sort-descent:after {
+ content: "\f0dd";
+ vertical-align: top; }
diff --git a/demo/100k/index.html b/demo/100k/index.html
new file mode 100644
index 0000000..d0b6cc6
--- /dev/null
+++ b/demo/100k/index.html
@@ -0,0 +1,219 @@
+
+
+
+
+ Angular Data Grid - 100k example
+
+
+
+
+
+
+
+
+
+
Angular Data Grid 100k Example
+ This demonstrates client-side sorting / pagination / filtering performance of the data grid with 100 000 rows loaded at once.
+ 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)
+ Project GitHub
+