本文整理匯總了TypeScript中ng-jhipster.EventManager類的典型用法代碼示例。如果您正苦於以下問題:TypeScript EventManager類的具體用法?TypeScript EventManager怎麽用?TypeScript EventManager使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了EventManager類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: onSaveSuccess
private onSaveSuccess(result: ProductReview) {
this.eventManager.broadcast({ name: 'productReviewListModification', content: 'OK'});
this.isSaving = false;
this.productReview = result;
}
示例2: registerChangeInDeliveries
registerChangeInDeliveries() {
this.eventSubscriber = this.eventManager.subscribe('deliveryListModification', (response) => this.load(this.delivery.id));
}
示例3: registerChangeInProductAvailabilities
registerChangeInProductAvailabilities() {
this.eventSubscriber = this.eventManager.subscribe('productAvailabilityListModification', (response) => this.loadAll());
}
示例4: registerChangeInOrderStatusHistories
registerChangeInOrderStatusHistories() {
this.eventSubscriber = this.eventManager.subscribe('orderStatusHistoryListModification', (response) => this.load(this.orderStatusHistory.id));
}
示例5: registerChangeInUsers
registerChangeInUsers() {
this.eventManager.subscribe('userListModification', (response) => this.loadAll());
}
示例6: registerChangeInTaxRates
registerChangeInTaxRates() {
this.eventSubscriber = this.eventManager.subscribe('taxRateListModification', (response) => this.loadAll());
}
示例7: onSaveSuccess
private onSaveSuccess(result: OrderTotal) {
this.eventManager.broadcast({ name: 'orderTotalListModification', content: 'OK'});
this.isSaving = false;
this.orderTotal = result;
}
示例8: registerChangeInContents
registerChangeInContents() {
this.eventSubscriber = this.eventManager.subscribe('contentListModification', (response) => this.loadAll());
}
示例9: onSaveSuccess
private onSaveSuccess(result: DigitalProduct) {
this.eventManager.broadcast({ name: 'digitalProductModification', content: 'OK'});
this.isSaving = false;
}
示例10: registerChangeInPosts
registerChangeInPosts() {
this.eventSubscriber = this.eventManager.subscribe('postListModification', (response) => this.reset());
}