- onBeforeShow |
+ onShow |
event: Event object |
- Callback to invoke before dialog is shown. |
+ Callback to invoke when dialog is shown. |
- onAfterShow |
+ onHide |
event: Event object |
- Callback to invoke after dialog is shown. |
-
-
- onBeforeHide |
- event: Event object |
- Callback to invoke before dialog is hidden. |
-
-
- onAfterHide |
- event: Event object |
- Callback to invoke after dialog is hidden. |
+ Callback to invoke when dialog is hidden. |
diff --git a/showcase/demo/tree/treedemo.ts b/showcase/demo/tree/treedemo.ts
index f012d79b23e..ad6f4e5c5bd 100644
--- a/showcase/demo/tree/treedemo.ts
+++ b/showcase/demo/tree/treedemo.ts
@@ -121,13 +121,13 @@ export class TreeDemo implements OnInit {
}
expandAll(){
- this.filesTree6.forEach( node => {
+ this.filesTree10.forEach( node => {
this.expandRecursive(node, true);
} );
}
collapseAll(){
- this.filesTree6.forEach( node => {
+ this.filesTree10.forEach( node => {
this.expandRecursive(node, false);
} );
}