kendo ui listView

$(document)
.on(
"click",
"input[name='serverFileCheckOption']",
function(e) {
if ($(this).attr("checked") == undefined) {
$("input[name='serverFileCheckOption']").each(
function(e) {
if ($(this).attr("checked")) {
$(this).removeAttr("checked");
}
});
$(this).attr("checked", true);
var data = $("#serverListView").data(
"kendoListView").dataSource.view();
var deviceIds = $.map($(this).parent(), function(
item) {
return data[$(item).index()].f_deviceid;
});
createAccountGrid(deviceIds[0]);
createGrid(deviceIds[0]);
} else {
$(this).removeAttr("checked");
clearGrid();
}
});


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章