您好我正在使用YUI数据表
最初我正在加载没有记录的表(空),我正在从用户那里获取输入并进行AJAX调用,当我尝试
时返回JSon对象PKG.dataTable.showTableMessage("Loading...");
var recorSet= PKG.dataTable.getRecordSet();
var records=recorSet.getRecords();
records.push(data);
recorSet.setRecord(records);
PKG.dataTable.render();
当我尝试添加行时,我会遇到异常
PKG.dataTable.render();
TypeError: Object #<Object> has no method 'getId'
请提前帮助我,谢谢你