react-bootstrap-table2-filter
Advanced tools
Comparing version 1.2.0 to 1.3.0
{ | ||
"name": "react-bootstrap-table2-filter", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "it's a column filter addon for react-bootstrap-table2", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
@@ -333,1 +333,27 @@ # react-bootstrap-table2-filter | ||
* MULTISELECT | ||
### Position | ||
Default filter is rendered inside the table column header, but you can choose to render them as a row by `filterPosition`: | ||
#### Render in the top of table body | ||
```js | ||
<BootstrapTable | ||
keyField='id' | ||
data={ products } | ||
columns={ columns } | ||
filter={ filterFactory() } | ||
filterPosition="top" | ||
/> | ||
``` | ||
#### Render in the bottom of table body | ||
```js | ||
<BootstrapTable | ||
keyField='id' | ||
data={ products } | ||
columns={ columns } | ||
filter={ filterFactory() } | ||
filterPosition="bottom" | ||
/> | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
336305
359