|
<ejs-splitter id='outterSplitter' #splitterInstance class="splitter-expand" #horizontal height='385px' width='100%' separatorSize=3 (resizeStop)="onResizeStop($event)">
</ejs-splitter> |
|
export class AppComponent {
@ViewChild('adaptiveTab')
public tabObj: TabComponent;
onResizeStop(args) {
this.tabObj.refresh();
}
} |