我正在使用DHTMLX将XML数据输出到表格中。
我有这个代码工作,但是当第一次单击单选按钮时,它将行id显示为null。第二次起作用。
http://jsfiddle.net/19eggs/ep6JE/11/
$(function() {
$("input:radio").click(function() {
var selectedId=mygrid.getSelectedRowId(); // DHTMLX method to get the row id, selects the row id eg: 110012178~01~01 and when the radio button is clicked for the first time it is null and second time it works
//var selectedId=10; // As a test, if I use this then it works
var clicked = [];
$("input[type=radio]:checked").each(function() {
clicked.push(selectedId+":"+this.value);
});
alert(clicked);
});
});
我在DHTMLX论坛上发表的帖子http://forum.dhtmlx.com/viewtopic.php?f=2&t=34634没有任何回复; o((