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