当选择要触发事件的行时,YUI 获取特定的单元格值
我正在使用 Yahoo UI 库,特别是这个 示例。
我想要的是在单击(选择)一行时获取特定列的值。
我正在使用此代码:
var makis = function() {alert("blabla"); };
myDataTable.subscribe("rowClickEvent", makis);
并且有效,但我只是不知道如何获取特定行中的列的值。
I am using Yahoo UI library, in particular this example.
What I want is to get a particular column's value when clicking (selecting) a row.
I am using this code:
var makis = function() {alert("blabla"); };
myDataTable.subscribe("rowClickEvent", makis);
and works, but I just don't know how to get a column's value in the particular row.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我自己找到了它,如果有人有同样的问题,我会发布。
Ok i found it on my own, i am posting if anyone has the same problem.