至少,这是之前渲染。我创建包含的文件行的DataTable(由JSON数据填充),并对应于每个的复选框。点击复选框将它添加到一个单独的DIV(一个“收藏夹列表”),这是工作,直到最近。
我结合一些其他的列到表中,由于某种原因,它似乎与复选框的最爱项目发生冲突。我相信有件事我一定要/更新添加到我的代码与新列一起去,但我不知道我怎么会去了解它。有什么想法吗?
loadTableData() {
$.noConflict();
let tableRes = JSONfile.d.results.filter(function(val) {
return (val.FileLeafRef.trim().length > 0);
}).map(function(obj) {
return {
"Path": obj.EncodedAbsUrl,
"Titles": obj.File.Name,
"Categories": obj.ResourceType.results.map(function(val) {
return val.Label;
}).join(";"),
"Blank": ''
}
});
$('#km-table-id').DataTable( {
columns: [
{ data: "Blank" },
{ data: "Titles" }, // populates col-2 column with docs
{ data: "Categories" }, // hidden col-3 categories
{ data: "Blank" }
],
columnDefs: [
{
data: "Path",
ordering: true, targets: [1],
render: function(data, type, row) {
return $('<a>')
.attr({target: "_blank", href: row.Path})
.text(data)
.wrap('<div></div>')
.parent()
.html();
},
targets: [1]
},
{ searchable: true, targets: [2], visible: false },
],
data: tableRes,
language: { searchPlaceholder: "Search All Documents" },
lengthMenu: [ 10, 25, 50, 100, 250, 500 ],
order: [],
pageLength: 500,
// paging: true,
pagingType: "full_numbers",
responsive: true,
scrollCollapse: true,
scrollXInner: true,
scrollY: 550,
sDom: '<"top">rt<"bottom"flp><"left">' // puts dropdown on bottom
});
function faveFunc(evt) {
var anchor = $($(evt.target).prev().find("a")[0]).clone();
switch($(".populate-faves").find("a:contains(" + $(anchor).text() + ")").length)
{
case 0:
$(".populate-faves").append(anchor);
break;
default:
$(".populate-faves > a:contains(" + $(anchor).text() + ")").remove();
break;
}
console.log(faveFunc);
}; // ------------ faveFunc
function newList() {
let data = $(evt.target).prev().find("a").eq(0).html();
let outputList = $(".populate-faves");
$(".populate-faves").html("");
$("#km-table-id tbody tr").each(function(i, el) {
let fave = $(".checkbox-class", el);
let itemText = $(data, el);
if(fave.prop("checked")) {
outputList.append("<li>" + itemText.html() + "<li>");
}
});
};
$(".checkbox-class").on("click", faveFunc);
$("#add-id").on("click", function(){
console.log($(this));
});
<table id="km-table-id" class="cell-border display stripe-hover">
<thead>
<tr>
<th></th>
<th>Title</th>
<th>Categories</th>
<th>My Favorites</th>
</tr>
</thead>
<!-- <tbody>
</tbody> -->
</table>
基本上是“标题”的数据表列必须是在最后的位置,以适当地与每个复选框对应。我敢肯定有一个解决方案,我可以列进来后复选框追加的工作,但这个是好的,现在。
$('#km-table-id').DataTable( {
columns: [
{ data: "Blank" },
{ data: "Categories" }, // hidden
{ data: "Blank" },
{ data: "Titles" } // MUST be in last position to respond w/ checkboxes
],
columnDefs: [
{
data: "Path",
ordering: true, targets: [3],
render: function(data, type, row) {
return $('<a>')
.attr({target: "_blank", href: row.Path})
.text(data)
.wrap('<div></div>')
.parent()
.html();
},
targets: [3]
},
{ searchable: true, targets: [1], visible: false },
],
...
我试图执行,其中columnDefs下{ data: "Titles"...
嵌套在一个清洁的版本,但没有奏效。从目前来看,我与上面的代码粘贴。