BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
Hello Syncfusion team!
I want the treeview to work this way:
- If parent node is checked, all childs are checked.
- If all childs are unchecked, parent IS NOT unchecked.
- If parent is unchecked, childs are not unchecked.
Could you assist me to achieve desired behavior?
Thanks in advance
nodeChecking: function (args) {
if (args.action == 'uncheck') {
treeObj.autoCheck = false; //disable autoCheck for uncheck.
} else {
treeObj.autoCheck = true; //enable autoCheck for check.
}
}, |
Thanks for the reply!
It works, but it is possible to add this behavior?
-If the child node is parent AND has parent, all children are marked but not the parent
Hi Keerthana,
The behavior is near what I expected, but i found an issue:
When you check Brazil, then uncheck 'Paraná'. I've Brazil, Ceará, Acre. checked.
But when I check 'China', Brazil gots unchecked.
Is there any workaround for this?
Thanks in advance,
Matias.
nodeChecking: function (args) {
if (args.action == 'check') {
var nodeId = [];
var predicate = new ej.data.Predicate(
'pid',
'equal',
args.data[0].id,
true
);
var filteredList = new ej.data.DataManager(
window.checkBoxData
).executeLocal(new ej.data.Query().where(predicate)); //get the child nodes of current checked parent node
for (var i = 0; i < filteredList.length; i++) {
nodeId.push(filteredList[i].id); // push the child node Id
}
this.checkAll(nodeId); //check all child nodes
}
} |