From f3b1c2d8a128dd20f61324ac50d45ccda3046ec4 Mon Sep 17 00:00:00 2001 From: AllenFang Date: Sun, 8 Apr 2018 19:57:16 +0800 Subject: [PATCH] update docs --- docs/basic-sort.html | 4 +- docs/cell-edit-props.html | 2 +- docs/column-props.html | 2 +- docs/filter-props.html | 287 ++++++++++++++++++++++++++++++++++++- docs/migration.html | 2 +- docs/pagination-props.html | 2 +- docs/row-select-props.html | 2 +- docs/table-props.html | 31 ++-- 8 files changed, 309 insertions(+), 23 deletions(-) diff --git a/docs/basic-sort.html b/docs/basic-sort.html index 16e8d55..7a6398d 100644 --- a/docs/basic-sort.html +++ b/docs/basic-sort.html @@ -8,7 +8,7 @@

Live Demo For Table Sort


Enable Sort on Column

-

Firstly, you need to know what column you allow user to sort and give the sort as true in the column definitation.

+

Firstly, you need to know what column you allow user to sort and give the sort as true in the column definition.

const columns = [{
   dataField: 'id',
   text: 'Product ID',
@@ -43,7 +43,7 @@
 

Manage Sorting Externally

Coming Soon!

Custom the Sorting Algorithm

-

It's simple!! configure sortFunc on column definitation.

+

It's simple!! configure sortFunc on column definition.

{
   dataField: 'id',
   text: 'Product ID',
diff --git a/docs/cell-edit-props.html b/docs/cell-edit-props.html
index 4bfa98a..f5fb635 100644
--- a/docs/cell-edit-props.html
+++ b/docs/cell-edit-props.html
@@ -1,4 +1,4 @@
-Cell Editing Props · react-bootstrap-table2