我在启用了 IndirectSelection 和 FilterPlugin 的情况下向 EnhancedGrid 添加了一个新行。添加新行的代码是:
grid.store.newItem({msConstId: response, msname: msName,description:description, msorder:msorder,eventType:eventTypeVal,eventTypeId:eventTypeId,isngrp:'N',eventAttribute:eventAttributeVal,eventAttributeId:eventAttribute});
grid.store.fetch();
这会创建一个新行,但它是隐藏的且不可见,并且存在于网格边界之外。我必须使用 Firebug 来验证它是否已创建。此新行不可见。我检查了带有新行的可见行的 html 代码,并且代码没有区别。
可能的原因是什么?