我有这个JsTree
使用此代码:
var Tree = $("#MyTree");
Tree.jstree({
"core": {
"themes": {
"responsive": false,
"multiple" : false,
},
"data": dataTree
},
"types": {
"default": {
"icon": "icon-lg"
},
"file": {
"icon": "icon-lg"
}
},
"ui": {
"select_limit": 1,
},
"plugins": ["wholerow", "types", "checkbox", "ui", "crrm", "sort"],
"checkbox": {
"three_state": false,
"real_checkboxes": false
}
});
Run Code Online (Sandbox Code Playgroud)
我需要分离选择和检查操作,用户必须检查他想要的所有节点,但只选择一行时间.现在,当我点击行的每个地方时,它选择该行并检查该节点,我只需要在用户点击它时选中该复选框.
我尝试了很多活动,但唯一的工作是:
Tree.on("changed.jstree", function (e, data) { });
Run Code Online (Sandbox Code Playgroud)
同时捕捉选择和检查的动作.
有什么建议?
i need to change the default Kendo UI Tooltip color. I've insert this code in my .css file:
.k-tooltip {
background: black !important;
border-color: black !important;
}
Run Code Online (Sandbox Code Playgroud)
But it doesn't change tip color that remains green.
Is possible to change that with css?