我正在从一个大型JSON文件中填充Jtable。填充和渲染需要太多时间。有没有让它快速。
我正在使用以下函数将数据填充到Jtable。
_addRecordsToTable: function (records) {
var self = this;
self._hideBusy();
$.each(records, function (index, record) {
self._addRowToTable(self._createRowFromRecord(record));
});
self._refreshRowStyles();
}
请帮助。