This commit is contained in:
2025-12-24 10:55:40 +08:00
parent eec9d6045c
commit 752bb23571
25 changed files with 2348 additions and 816 deletions

View File

@@ -368,6 +368,11 @@ export class GridDropdownColumn extends GridColumn {
col.onDropExpanded.call(col, wrapper.values, drop);
}
};
drop.onCollapsed = () => {
if (typeof col.onDropCollapsed === 'function') {
col.onDropCollapsed.call(col, wrapper.values, drop);
}
};
return drop.create();
}