- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 treeview - https://jsfiddle.net/allengosta/9pg13kth/11/我想让 treetable(第一列 - treeview,第二列 - 颜色)像:
如何做到这一点?
//json example
var treeObject = [
{
text:"Parent 1",
checked:true,
id:15,
color: 'blue',
children:[ // Required
{ text:"Child 1", checked:true, color: 'white'},
{ text:"Child 2", color: 'green' }
]
},
{
text:"Parent 2",
color: 'yellow',
children:[
{
text:"Parent 3",
color: 'purple',
children:[
{text:"Child 3",checked:true, color: 'green'},
{text:"Child 4", color: 'orange'}
]
}
]
}
]
最佳答案
已编辑
这个新解决方案按照您的要求使用 HTML Table 元素。当我在 Chrome 中测试它时,UI 看起来不错,但这不是一个理想的解决方案,因为它将表行直接嵌套在其他表行中。(如果没有这种困惑,正确设置 CSS 将更具挑战性。)SPACER_WIDTH
破解 createSingleItem
函数是我在这种情况下处理水平对齐的方式。
(如果您真的不需要表格本身,您可以考虑将 TR
改回 UL
并使用一些具有适当宽度的内联 block LI
等以保持一切都对齐。)
大部分重大变化都在最后两个函数中。我希望它对你有用。
// Constructs a TableTreeView from `testArray` and adds it to `container`
var testArray = [
{
text: "Parent 1",
checked: true,
id: 15,
color: 'blue',
children: [{ text: "Child 1", checked: true, color: 'white' }, { text: "Child 2", color: 'green' }]
},
{
text: "Parent 2",
color: 'yellow',
children: [{
text: "Parent 3",
color: 'purple',
children: [{ text: "Child 3", checked: true, color: 'green' }, { text: "Child 4", color: 'orange' }]
}]
}
]
var tw = new TableTreeView( testArray, { showAlwaysCheckBox: true, fold: false });
document.getElementById("container").appendChild(tw.root);
// ---------- TableTreeView constructor ----------
function TableTreeView(datas, options) {
// --- Makes `root` table (with class `.tabletreeview`) ---
this.root = document.createElement("table");
this.root.className = "tabletreeview";
let t = this;
// ---- Defines instance methods ----
this.update = function() {
$(t.root).find(".group").each(function(index, el) {
if ($(el).find(".group").length > 0) { $(el).find(">[fold-button]").css("visibility", "visible"); }
else { $(el).find(">[fold-button]").css("visibility", "hidden"); }
checkControlParents.bind($(el).find(">.item"))();
})
}
this.load = function(datas){
$(this.root).empty();
createTreeViewReq(this.root, datas, options, 0);
this.update();
}
this.save = function(type, node){
if(type == null){ type = "tree"; }
if(type == "tree"){
if(node == null){
var data = [], $children = $(this.root).find(">.group");
for (var i = 0; i < $children.length; i++) { var child = this.save("tree", $children[i]); data.push(child); }
return data;
}
else {
var data = saveSingle($(node).find(">.item")[0]);
data.children = [];
var $children = $(node).find(">.group");
for (var i = 0; i < $children.length; i++){ var child = this.save("tree", $children[i]); data.children.push(child); }
return data;
}
}
if (type == "list") {
var data = [], $items = $(this.root).find(".item");
for (var i = 0; i < $items.length; i++) { data.push(saveSingle($items[i])); }
return data;
}
}
this.openAllFold = function(item) {
item = item ||this.root;
$(item).find("[fold-button]").each(function(index, el) { groupOpen.bind(this)(); });
}
this.closeAllFold = function(item) {
item = item || this.root;
$(item).find("[fold-button]").each(function(index, el) { groupClose.bind(this)(); })
}
function saveSingle(el) {
el = el || this;
return Object.assign({ children: [] }, el.data, { checked: el.checked });
}
// ---- Sets options and calls `this.load` ----
var defaultOptions = { showAlwaysCheckBox: true, fold: true, openAllFold: true }
options = Object.assign(defaultOptions, options);
if(options.openAllFold){ this.openAllFold(); } else { this.closeAllFold(); }
this.load(datas);
// ---- GROUP EVENTS ----
function groupOpen(){ $(this).parent().find(">.group").slideDown("fast"); }
function groupClose() { $(this).parent().find(">.group").slideUp("fast"); }
function groupToggle(){ $(this).parent().find(">.group").slideToggle("fast"); }
// ---- ITEM EVENTS ----
function changeCheckState(value, allChildCheck) {
var c = this.checked;
if (value != null && !(value instanceof MouseEvent)){c = value; }
else{ if(c == 0){ c = 1; } else if(c == 1 || c == 2){ c-- } }
this.checked = c;
setCheckState.bind(this)(c);
if (c != 2){ checkAllChilds.bind(this)(c); checkControlParents.bind(this)(); }
}
function checkAllChilds(value) {
var $group = $(this).parent(".group");
$group.find(".item").each(function(index, el) { setCheckState.bind(el)(value); })
}
function checkControlParents() {
var $parents = $(this).parents(".tabletreeview .group");
for (var index = 1; index < $parents.length; index++) {
var el = $parents[index]; item = $(el).find(">.item").get(0); $children = $(el).find(".group .item"); var all1 = true; var all0 = true;
for (var i = 0; i < $children.length; i++) { if ($children[i].checked != 1) all1 = false; if ($children[i].checked != 0) all0 = false; }
if(all1){ setCheckState.bind(item)(1); } else if(all0){ setCheckState.bind(item)(0); } else setCheckState.bind(item)(2);
}
}
function setCheckState(value) {
this.checked = value; this.setAttribute("check-value", value)
if(value == 0){ $(this).find(">[check-icon]")[0].className = "fa fa-circle-thin"; }
if(value == 1){ $(this).find(">[check-icon]")[0].className = "fa fa-check-circle-o"; }
if(value == 2){ $(this).find(">[check-icon]")[0].className = "fa fa-dot-circle-o"; }
}
function createTreeViewReq(parentNode, datas, options, depth){
// Takes `parentNode` (a row or table), `datas` (array of objects),
// `options` (object), and `depth` (integer)
// Appends rows to parentNode -- kludgy b/c `tr` elements are nested
for(var i = 0; i < datas.length; i++){
if(datas[i] != null){
var
data = datas[i],
item = createSingleItem(data, depth);
parentNode.appendChild(item);
if("children" in data && data.children.length > 0){
createTreeViewReq(item, data.children, options, depth + 1);
}
}
}
}
function createSingleItem(data, depth) {
// Takes a `data` object (w/ .text, .checked, .color & .children)
// Returns a `tr` (w/ spacer, foldButton, item, and color)
// Defines width values
const TOP_ITEM_WIDTH = 300, SPACER_WIDTH = 20;
// Makes a row (aka `group`)
var group = document.createElement("tr");
group.className = "group"
if("className" in options){ group.className += options.className; }
// Adds a `spacer` cell to the row
var spacer = document.createElement("td");
spacer.style.width = `${SPACER_WIDTH}px`;
group.appendChild(spacer);
// Conditionally adds a `foldButton`
if("fold" in options){
var foldButton = document.createElement("i");
foldButton.className = "fa fa-caret-right";
foldButton.setAttribute("fold-button", 1);
foldButton.onclick = groupToggle.bind(foldButton);
foldButton.isOpened = options.fold;
group.appendChild(foldButton);
}
// Makes `item` (`showing data.text`, w/ all data attributes from `data`)
var item = document.createElement("td");
// Hack to align color cells
item.style.width = `${ TOP_ITEM_WIDTH - (depth * (SPACER_WIDTH + 4)) }px`;
item.className = "item";
item.innerHTML = data.text;
item.data = data;
for(var keys = Object.keys(data), i = 0; i < keys.length; i++){
item.setAttribute("data-" + keys[i], data[keys[i]]);
}
// Handles check-related events
if ("checked" in data || options.showAlwaysCheckBox == true) {
var checked = document.createElement("i");
checked.setAttribute("check-icon", "1");
checked.className = "fa ";
item.prepend(checked);
if ("checked" in data && data.checked) { setCheckState.bind(item)(data.checked ? 1 : 0); }
else { setCheckState.bind(item)(0); }
}
item.onclick = changeCheckState.bind(item);
// Adds item cell to the row
group.appendChild(item);
// Adds color cell to the row
var colorLi = document.createElement("td");
colorLi.classList.add("color");
colorLi.appendChild(document.createTextNode(data.color));
group.appendChild(colorLi);
return group;
}
}
/* Note: some of your original styles may not be appropriate for HTML tables */
body {
background-color: #fafafa;
font-family: 'Roboto';
}
.tabletreeview,
.tabletreeview * {
user-select: none;
margin: 0px;
padding: 0px;
}
.tabletreeview .item {
cursor: pointer;
display: inline-block;
padding: 4px;
}
.tabletreeview .color {
display: inline-block;
padding: 4px;
}
.tabletreeview .item:hover {
background: #DDD;
}
.tabletreeview .group [fold-button] {
display: inline-block;
padding: 10px;
width: 30px;
text-align: center;
border-radius: 3px;
cursor: pointer;
}
.tabletreeview .group [fold-button]:hover {
background: #AAA;
}
.tabletreeview .item i {
margin-right: 10px;
}
.tabletreeview .item[check-value="2"] {
color: #595;
}
.tabletreeview .item[check-value="1"] {
color: #5A5;
}
.tabletreeview .item[check-value="0"] {
color: #333;
}
<head>
<link href="https://www.jqueryscript.net/css/jquerysctipttop.css" rel="stylesheet" type="text/css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!-- <script type="text/javascript" src="treeview.js"></script> -->
<!-- <link href="css/jquery.tabletreeview.css" rel="stylesheet"> -->
</head>
<body>
<div id="container"></div>
</body>
关于javascript - 如何使用 treeview 复选框制作表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57968392/
我在一页上有两个 Kendo UI TreeViews。例如: var data1 = new kendo.data.HierarchicalDataSource({ data: [
使用 Vuetify 的 TreeView 组件时,我试图能够选择父级 没有 让它也选择所有的后代( child )。我尝试了可选、可激活等的各种组合……但似乎找不到合适的组合。 任何人都有实现这一预
在我的应用程序中,左侧有一个 TreeView,我根据 TreeView 中的选择更新右侧的 Pane 。一个非常直接的场景。当选择为空时,我会在 Pane 中显示一条类似“请进行选择”的消息,即我还
我有一个我自己无法解决的问题。请帮忙。 我有(有条件地): /** @mainpage A @subpage B */ /** @page B @subpage C */ /** @page C */
我制作了一个高度为 40 px 的自定义树单元。 这里的问题披露三角形没有垂直居中对齐。 这里是树单元的代码: public static class TestObjectCell extends A
我正在学习如何使用 kotlin 并已开始使用tornadoFX。我正在阅读该指南以尝试学习它,但是我无法弄清楚“具有不同类型的 TreeView”中的含义。似乎是说我应该使用星形投影,据我所知,当您
如何在 JavaFX 2 TreeView 中过滤节点? 我有一个 TextField,我想根据 TextField 的内容过滤所有节点(例如节点标签)。 谢谢。 最佳答案 这是我编写的可重用的可过滤
我正在通过查询 sharepoint 用户配置文件构建一个 asp.net TreeView 。要选择的帐户名和根节点帐户名正在从查询字符串中读取。 我还需要为树配置可配置的扩展深度。 如果节点属于第
我使用的是 JavaFX 8,目前正在进行一些 GUI 开发。我的 TreeView 有点问题,我需要你的帮助。 您知道在 TreeView 中是否可以只选择标签而不是 TreeCell 的整个宽度吗
我有很多(分层的)数据显示在 TreeView 中(可能是大约 20K 项或更多,包括子项)。我的数据的特殊问题是 TreeView 中显示的每个对象都可以存在于许多 TreeView 项目中。我的意
有没有什么简单的方法可以让 Gtk.Treeview 在编辑时更新它的列? 我基于 Gtk.ListStore 模型构建了 Treeview。我这样初始化单元格: Gtk.CellRendererTe
我开始使用 javafx。我有一个问题。我有一个树 View ,其中节点通过外部命令改变了他的位置,但它只是看不到树。我必须最小化父级并重新展开才能看到效果。 Altem 对该树 View 的任何建议
如何在 Kendo Treeview 中取消选择节点? 我尝试从节点中删除类“k-state-selected”。它工作正常,但有没有直接的方法可以做到这一点。 最佳答案 现在有一种更好的方法可以取消
我有以下情况,我有一个带有许多嵌套子节点的父节点。只有父节点应该有一个复选框,我发现的唯一例子是只有子节点有一个复选框。这可以使用 Kendo 模板吗? http://dojo.telerik.com
我正在尝试向 TreeView 数据项添加一些内联图标,但是 k-template 指令似乎没有呈现任何内容。 我基于在线文档在 http://demos.telerik.com/k
我有一个带有复选框和父节点和子节点的 Kendo Treeview 。 我需要将选中节点的完整层次结构复制到另一个 Treeview 中。 ex - 根节点、父节点和选中的子节点。 下面是我的代码,但
我需要在较大的滚动 Pane 中使用 JavaFX 2.2 TreeView 控件,该滚动 Pane 具有多个不属于 Treeview 的其他元素。问题是 TreeView 有它自己的内置滚动 Pan
当我通过单击 TreeView 节点右侧的加号来展开该节点时,该节点将被选中。我怎样才能避免这种情况?我希望能够在不更改所选节点的情况下展开节点(例如在 RegEdit.exe 中),并且仅在单击节点
我正在尝试设置一个 Treeview 对象,设置节点,然后更新控件以使值具有适当的格式。现在我有以下代码,当我设置一个控件时,它可以工作,但不是来自变量的控件。如何从变量设置本地控件? Private
如何将节点填充到作为另一个 treeview1 实例的 newtreeview1 中?添加到“newtreeview1”的节点应该在 treeview1 的第一个实例中可用? 例如;如果 treevi
我是一名优秀的程序员,十分优秀!