diff --git a/README.md b/README.md
index 30c62b2..b1dc410 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
-##Angular Data Grid
+## Angular Data Grid
+
Light, flexible and performant Data Grid for AngularJS apps, with built-in sorting, pagination and filtering options, unified API for client-side and server-side data fetching,
-seamless synchronization with browser address bar and total freedom in mark-up and styling suitable for your application. Angular 1.3 - 1.5 compliant.
+seamless synchronization with browser address bar and total freedom in mark-up and styling suitable for your application. Angular 1.3 - 1.6 compliant.
Demo Bootstrap: http://angular-data-grid.github.io/demo/bootstrap/
@@ -8,10 +9,15 @@ Demo Material: http://angular-data-grid.github.io/demo/material/
Demo 100k: http://angular-data-grid.github.io/demo/100k/
+Demo Angular UI Router: http://angular-data-grid.github.io/demo/bootstrap/ui-router.html
+
### 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.
- - Built-in sync with browser address bar (URL), so you can copy-n-paste sorting/filtering/pagination results URL and open it in other browser / send to anyone - even if pagination / filtering are done on a client-side.
+ - Built-in sync with browser address bar (URL), so you can copy-n-paste sorting/filtering/pagination results URL and open it in other browser / send to anyone - even if pagination / filtering are done on a client-side. [See details](#url-synchronization)
+ - Support of [Angular UI Router](https://github.com/angular-ui/ui-router) navigation.
+ - Optional support of fixed header table: [Bootstrap Demo](http://angular-data-grid.github.io/demo/fixed-header/bootstrap-grid.html) [Material Design Demo](http://angular-data-grid.github.io/demo/fixed-header/angular-md-grid.html)
+ - Optional support of CSV data exports: [Demo](http://angular-data-grid.github.io/demo/bootstrap/)
- Unlike most part of other Angular DataGrids, we intentionally use non-isolated scope of the directive to maximize flexibility, so it can be easily synchronized with any data changes inside your controller.
NOTE! With great power comes great responsibility, so use non-isolated API wisely.
@@ -87,7 +93,7 @@ angular.module('myApp', ['dataGrid', 'pagination'])
};
```
-NOTE: `grid-item` wrapper directive used in the example above, to make code more concise - you can use regular `ng-repeat` instead if needed.
+NOTE: `grid-item` wrapper directive used in the example above, to make code more concise, but you can always use regular `ng-repeat` instead, like: `ng-repeat="item in filtered | startFrom:(paginationOptions.currentPage-1)*paginationOptions.itemsPerPage | limitTo:paginationOptions.itemsPerPage track by $index"`
### Basic API
@@ -231,7 +237,18 @@ Then create in `gridOptions.customFilters` variable named as `ng-model` with fil
```
-### Others
-All filters have optional parameter `disable-url`. If you set it to **true**, URL-synchronization for this filter will be disabled.
+### URL Synchronization
+You can disable/enable URL synchronization for the whole grid or on a level of particular filter.
+
+Global parameter `gridOptions.urlSync` (boolean, default is 'false') works for the whole grid.
+Each filter has optional parameter `disable-url` (boolean, default is 'false'). If you set it to **true**, URL-synchronization for this particular filter will be disabled.
+
+
+### Multiple grids on page
If you need to use 2 or more grids on page, please add `id` to grids, and then use `grid-id` attribute on filters to specify their corresponding grid. [Example](http://angular-data-grid.github.io/demo/bootstrap/multiple.html)
+
+### Next / Future
+ - Migrate to Heroku
+ - Cover with unit / e2e tests
+ - Port to Angular2?
diff --git a/demo/100k/index.html b/demo/100k/index.html
index d16ea35..4ce1f28 100644
--- a/demo/100k/index.html
+++ b/demo/100k/index.html
@@ -207,14 +207,14 @@
Angular Data Grid 100k Example