本文整理匯總了TypeScript中ng-jhipster.JhiEventManager.broadcast方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript JhiEventManager.broadcast方法的具體用法?TypeScript JhiEventManager.broadcast怎麽用?TypeScript JhiEventManager.broadcast使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ng-jhipster.JhiEventManager
的用法示例。
在下文中一共展示了JhiEventManager.broadcast方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: onSaveSuccess
private onSaveSuccess(result: ComplianceEvidenceNoteAssess) {
this.eventManager.broadcast({ name: 'complianceEvidenceNoteListModification', content: 'OK'});
this.isSaving = false;
this.activeModal.dismiss(result);
}
開發者ID:mohammedik2005,項目名稱:newProgram,代碼行數:5,代碼來源:compliance-evidence-note-assess-dialog.component.ts
示例2: onSaveSuccess
private onSaveSuccess(result: ValueStreamElement) {
this.eventManager.broadcast({ name: 'valueStreamElementListModification', content: 'OK'});
this.isSaving = false;
this.activeModal.dismiss(result);
}
開發者ID:fantasticJilove,項目名稱:imageAnnotationGateway,代碼行數:5,代碼來源:value-stream-element-dialog.component.ts
示例3: onSaveSuccess
private onSaveSuccess(result: Cadastros) {
this.eventManager.broadcast({ name: 'cadastrosListModification', content: 'OK'});
this.isSaving = false;
this.activeModal.dismiss(result);
}