@syncfusion/ej2-filemanager 26.1.40 → 26.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10850,7 +10850,9 @@ class DetailsView {
10850
10850
  }
10851
10851
  onPathChanged(args) {
10852
10852
  this.parent.isCut = false;
10853
- if (this.parent.breadcrumbbarModule.searchObj.element.value.trim() === '' && this.gridObj) {
10853
+ const pathField = this.parent.detailsViewSettings.columns.find((column) => column.field === 'filterPath');
10854
+ if ((this.parent.breadcrumbbarModule.searchObj.element.value.trim() === '' && this.gridObj) ||
10855
+ (!isNullOrUndefined(pathField) && !isNullOrUndefined(pathField.hideAtMedia) && pathField.hideAtMedia !== '')) {
10854
10856
  this.parent.searchedItems = [];
10855
10857
  if (!this.parent.isFiltered) {
10856
10858
  this.removePathColumn(false);