本文整理匯總了TypeScript中@eg/share/grid/grid.component.GridComponent.reload方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript component.GridComponent.reload方法的具體用法?TypeScript component.GridComponent.reload怎麽用?TypeScript component.GridComponent.reload使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@eg/share/grid/grid.component.GridComponent
的用法示例。
在下文中一共展示了component.GridComponent.reload方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: recordId
@Input() set recordId(id: number) {
this.recId = id;
// Only force new data collection when recordId()
// is invoked after ngInit() has already run.
if (this.initDone) {
this.partsGrid.reload();
}
}
示例2:
ok => this.partsGrid.reload(),
示例3: limitToImportErrors
limitToImportErrors(checked: boolean) {
this.filterImportErrors = checked;
this.itemsGrid.reload();
}
示例4: orgOnChange
orgOnChange(org: IdlObject) {
this.contextOrg = org;
this.grid.reload();
}
示例5:
ok => this.grid.reload(),
示例6:
() => {
this.newPointType = null;
this.grid.reload();
}