Zoran Jeremic
unread,Jul 24, 2010, 2:23:41 PM7/24/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jsTree
Hi,
I have two trees and I drag and drop the nodes from one to another.
For each dragged node I set a different color for nodes in both trees.
Here is the code I use for this:
$("#basic_html2").bind("move_node.jstree",
function (event,data){
data.rslt.o.children("a").css("color","grey");
data.rslt.oc.children("a").css("color","grey");
However, this doesn't affect the children nodes, so children are not
colored. Can you suggest me how to make all children to have the same
effect?
Zoran