You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
676 B
Plaintext
23 lines
676 B
Plaintext
# Table Multiple Search
|
|
|
|
Use Plugin: [bootstrap-table-multiple-search](https://github.com/wenzhixin/bootstrap-table/tree/master/src/extensions/multiple-search)
|
|
|
|
## Usage
|
|
|
|
```html
|
|
<script src="extensions/multiple-search/bootstrap-table-multiple-search.js"></script>
|
|
```
|
|
|
|
## Options
|
|
|
|
### multipleSearch
|
|
|
|
* type: Boolean
|
|
* description: Set to true if you want to search by multiple columns. For example: if the user puts: "526 table" we are going to `split` that string and then we are going to search in all columns in the boostrap table.
|
|
* default: `false`
|
|
|
|
### delimeter
|
|
|
|
* type: String
|
|
* description: Configure the delimeter of the multiple search
|
|
* default: ` ` (whitespace) |