如何从网格中获取元素
我在 extjs 程序中有网格。网格有 2 列。我想获取网格中的每个值。 是否可能有类似的事情(当然是在 JS 中):
foreach( row in grid ) {
row.cell[0] // do something
row.cell[1] // do something
}
如果是,该怎么做?
I have grid in extjs program. Grid has 2 columns. I want to get each value in grid.
Is possible something like that (of course in JS):
foreach( row in grid ) {
row.cell[0] // do something
row.cell[1] // do something
}
If yes, how to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用其他用户答案我知道如何在 extjs 3.3.1 中执行此操作(user863680 的解决方案在我的程序中不起作用)。
Using other user answer I know how do it in extjs 3.3.1 (user863680's solution doesn't work in my program).
如果您想访问网格中的每一行,您可以执行以下操作。
我希望这有帮助。
If you want to access each row in your grid, you could do the following.
I hope this helps.