You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Note:** If you've included bootstrap & jQuery packages already in your project, then include only **vue-bootstrap4-table.min.js** script.
60
61
@@ -493,7 +494,8 @@ columns: [
493
494
label: "First Name",
494
495
name: "name.first_name", // access nested objects properties with "."
495
496
filter: {
496
-
type: "multi-select",
497
+
type: "select",
498
+
mode: "multi",
497
499
placeholder: "Select options",
498
500
options: [{
499
501
"name": "option one",
@@ -518,6 +520,7 @@ columns: [
518
520
| Attributes |Description | Type |Default |
519
521
|--|--|--|--|
520
522
| filter.type | Defines the type of filter. | String | Empty string |
523
+
| filter.mode | Defines the mode of selection in the dropdown. Allowed options are **`single`** and **`multi`**. If the mode is **`single`**, then dropdown will be rendered with **`radio`** buttons, else if the mode is multi, then dropdown will be rendered with **`checkboxes`**. | String | "single" |
521
524
| filter.placeholder | Default text for the dropdown. | String | Empty string |
522
525
| filter.options | You can provide your list of name and value objects to be populated in the multi-select filter dropdown. | Array | Empty array |
0 commit comments