ngx-datatable在加载编辑弹出窗口时非常慢



我有这样的ngx数据表,我可以编辑弹出窗口中的每一行,一切正常,直到我到达结果的第二页,这很神奇,当我单击行进行编辑时,我在editCustomer方法中捕获了breakpoin,但弹出窗口中的数据仅在5秒后刷新,我可以检查什么?

<ngx-datatable class="material colored-header sm table table-striped table-hover"
[loadingIndicator]="loadingIndicator"
[rows]="customers"
[rowHeight]="35"
[headerHeight]="35"
[footerHeight]="35"
[columns]="columns"
[scrollbarV]="true"
[rowClass]="getRowClass"
[columnMode]="'force'">
</ngx-datatable>
<ng-template #indexTemplate let-value="value">
<strong>{{value}}</strong>
</ng-template>
<ng-template #actionsTemplate let-row="row" let-value="value" let-i="index">
<a class="btn btn-link btn-xs" href="javascript:;" (click)="editCustomer(row)"><i class="fa fa-pencil-square-o" aria-hidden="true"></i> Edit</a>
</ng-template>

<div class="modal fade" bsModal #editorModal="bs-modal" (onHidden)="onEditorModalHidden()" [config]="{backdrop: 'static'}" tabindex="-1">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title pull-left"><i class="fa fa-shield"></i> Customer Details </h4>
<button type="button" class="close pull-right" title="Close" (click)="editorModal.hide()">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<customer-editor #customerEditor></customer-editor>
</div>
</div>
</div>
</div>
</div>

在我的 TS 文件中

editCustomer(row: Customer) {
this.customerEditor.editCustomer(row);
this.editorModal.show();
}

客户编辑器是

@ViewChild('customerEditor')
customerEditor: CustomerEditorComponent;

和在客户编辑器中

editCustomer(customer: Customer) {
if (customer) {
this.customerEdit = new Customer();
Object.assign(this.customerEdit, customer);
}

在客户编辑视图中仅{{customerEdit.name}}而且,这很奇怪,但是如果转到表中的第二页,则Popup会在4 -5秒后刷新数据。

就像更改表格中的页面会在角度中暂停绑定几秒钟一样。

好的,我发现了问题,这是lib问题,问题在最新版本中已修复 https://github.com/swimlane/ngx-datatable/issues/1321

相关内容

最新更新