|
@@ -6,10 +6,13 @@ import LAY_EXCEL from "lay-excel"
|
|
|
import {
|
|
|
disabled,
|
|
|
fieldLabel,
|
|
|
- gravity, height, metaId,
|
|
|
+ gravity,
|
|
|
+ height,
|
|
|
+ metaId,
|
|
|
PropertyDescriptionTable,
|
|
|
tooltip,
|
|
|
- value, width,
|
|
|
+ value,
|
|
|
+ width,
|
|
|
YvBase
|
|
|
} from "../PropertyDescriptionTable";
|
|
|
import {PropertyDescription} from "../PropertyDescription";
|
|
@@ -590,7 +593,10 @@ export default function () {
|
|
|
},
|
|
|
|
|
|
clearFilter(sender) {
|
|
|
- sender.up('grid').filters.clearFilters();
|
|
|
+ const grid = sender.up('grid')
|
|
|
+ grid.filters.clearFilters()
|
|
|
+ grid.getStore().sorters.removeAll()
|
|
|
+ // grid.getStore().reload()
|
|
|
},
|
|
|
|
|
|
saveGridUIConfig(sender) {
|