mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
Fixed #3388 - DataTable: Disable filter overlay panel when clicking outside
This commit is contained in:
parent
b0dd082644
commit
c3c3edcde8
7 changed files with 37 additions and 0 deletions
|
@ -36,6 +36,7 @@
|
|||
:filters="filters"
|
||||
:filtersStore="filtersStore"
|
||||
:filterInputProps="filterInputProps"
|
||||
:filterOnOutsideClick="filterOnOutsideClick"
|
||||
@filter-change="$emit('filter-change', $event)"
|
||||
@filter-apply="$emit('filter-apply')"
|
||||
:filterMenuStyle="columnProp('filterMenuStyle')"
|
||||
|
@ -143,6 +144,10 @@ export default {
|
|||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
filterOnOutsideClick: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
filterInputProps: {
|
||||
type: null,
|
||||
default: null
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue