Revert "Fixed #3388 - DataTable: Disable filter overlay panel when clicking outside"

This reverts commit c3c3edcde8.
pull/3518/head^2
Tuğçe Küçükoğlu 2023-01-11 12:21:50 +03:00
parent df3f1ca5a9
commit b58ef712db
7 changed files with 0 additions and 37 deletions

View File

@ -137,12 +137,6 @@ const DataTableProps = [
default: 'null',
description: 'Layout of the filter elements, valid values are "row" and "menu".'
},
{
name: 'filterOnOutsideClick',
type: 'boolean',
default: 'false',
description: 'Whether to trigger filter apply when outside of the element is clicked.'
},
{
name: 'filterLocale',
type: 'string',

View File

@ -182,10 +182,6 @@ export default {
type: Object,
default: null
},
filterOnOutsideClick: {
type: Boolean,
default: false
},
filterMenuClass: {
type: String,
default: null
@ -457,7 +453,6 @@ export default {
if (!this.outsideClickListener) {
this.outsideClickListener = (event) => {
if (this.overlayVisible && !this.selfClick && this.isOutsideClicked(event.target)) {
this.filterOnOutsideClick && this.applyFilter();
this.overlayVisible = false;
}

View File

@ -587,11 +587,6 @@ export interface DataTableProps {
* Fields for global filter
*/
globalFilterFields?: string[] | undefined;
/**
* Whether to trigger filter apply when outside of the element is clicked.
* Default value is false.
*/
filterOnOutsideClick?: boolean | undefined;
/**
* Locale to use in filtering. The default locale is the host environment's current locale.
*/

View File

@ -49,7 +49,6 @@
:filters="d_filters"
:filtersStore="filters"
:filterDisplay="filterDisplay"
:filterOnOutsideClick="filterOnOutsideClick"
:filterInputProps="filterInputProps"
@column-click="onColumnHeaderClick($event)"
@column-mousedown="onColumnHeaderMouseDown($event)"
@ -506,10 +505,6 @@ export default {
type: Boolean,
default: false
},
filterOnOutsideClick: {
type: Boolean,
default: false
},
tableStyle: {
type: null,
default: null

View File

@ -36,7 +36,6 @@
:filters="filters"
:filtersStore="filtersStore"
:filterInputProps="filterInputProps"
:filterOnOutsideClick="filterOnOutsideClick"
@filter-change="$emit('filter-change', $event)"
@filter-apply="$emit('filter-apply')"
:filterMenuStyle="columnProp('filterMenuStyle')"
@ -144,10 +143,6 @@ export default {
type: Boolean,
default: false
},
filterOnOutsideClick: {
type: Boolean,
default: false
},
filterInputProps: {
type: null,
default: null

View File

@ -27,7 +27,6 @@
:filters="filters"
:filterDisplay="filterDisplay"
:filtersStore="filtersStore"
:filterOnOutsideClick="filterOnOutsideClick"
:filterInputProps="filterInputProps"
@filter-change="$emit('filter-change', $event)"
@filter-apply="$emit('filter-apply')"
@ -203,10 +202,6 @@ export default {
type: Boolean,
default: false
},
filterOnOutsideClick: {
type: Boolean,
default: false
},
filterInputProps: {
type: null,
default: null

View File

@ -2038,12 +2038,6 @@ export default {
<td>null</td>
<td>Layout of the filter elements, valid values are "row" and "menu".</td>
</tr>
<tr>
<td>filterOnOutsideClick</td>
<td>boolean</td>
<td>false</td>
<td>Whether to trigger filter apply when outside of the element is clicked.</td>
</tr>
<tr>
<td>filterLocale</td>
<td>string</td>