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

This commit is contained in:
Tuğçe Küçükoğlu 2023-01-11 11:35:41 +03:00
parent b0dd082644
commit c3c3edcde8
7 changed files with 37 additions and 0 deletions

View file

@ -587,6 +587,11 @@ 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.
*/