diff --git a/docs/columns.md b/docs/columns.md
index 906536e..525ec4d 100644
--- a/docs/columns.md
+++ b/docs/columns.md
@@ -49,6 +49,7 @@ Available properties in a column object:
* [editorRenderer](#editorRenderer)
* [filter](#filter)
* [filterValue](#filterValue)
+* [searchable](#searchable)
* [csvType](#csvType)
* [csvFormatter](#csvFormatter)
* [csvText](#csvText)
@@ -917,6 +918,9 @@ A final `String` value you want to be filtered.
}
```
+## column.searchable - [Boolean]
+Default the column is searchable. Give `false` to disable search functionality on specified column.
+
## column.csvType - [Object]
Default is `String`. Currently, the available value is `String` and `Number`. If `Number` assigned, the cell value will not wrapped with double quote.
diff --git a/packages/react-bootstrap-table2-example/examples/search/searchable-column.js b/packages/react-bootstrap-table2-example/examples/search/searchable-column.js
new file mode 100644
index 0000000..dc9b293
--- /dev/null
+++ b/packages/react-bootstrap-table2-example/examples/search/searchable-column.js
@@ -0,0 +1,87 @@
+/* eslint react/prop-types: 0 */
+import React from 'react';
+
+import BootstrapTable from 'react-bootstrap-table-next';
+import ToolkitProvider, { Search } from 'react-bootstrap-table2-toolkit';
+import Code from 'components/common/code-block';
+import { productsGenerator } from 'utils/common';
+
+const { SearchBar } = Search;
+const products = productsGenerator();
+
+const columns = [{
+ dataField: 'id',
+ text: 'Product ID'
+}, {
+ dataField: 'name',
+ text: 'Product Name',
+ searchable: false
+}, {
+ dataField: 'price',
+ text: 'Product Price',
+ searchable: false
+}];
+
+const sourceCode = `\
+import BootstrapTable from 'react-bootstrap-table-next';
+import ToolkitProvider, { Search } from 'react-bootstrap-table2-toolkit';
+
+const { SearchBar } = Search;
+const columns = [{
+ dataField: 'id',
+ text: 'Product ID'
+}, {
+ dataField: 'name',
+ text: 'Product Name',
+ searchable: false
+}, {
+ dataField: 'price',
+ text: 'Product Price',
+ searchable: false
+}];
+
+Input something at below input field:
+
+
{ sourceCode }
+