Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 dojox.grid.EnhancedGrid 导出器插件导出特定列。
谢谢拉维坎特
我可以使用以下代码检索项目并解析单列。
store._fetchItems("", function(items){ for(var i=0;i<items.length;i++) { console.log(items[i].Column1); } }, function(error){ console.log(error);
});
谢谢