Hi,
I am using the jquery splitter plugin found here:
http://methvin.com/splitter/
together with the jquery tree component found here:
http://www.jstree.com/
both work great individually but if i put the jstree inside the
splitter, the trees contextmenu stops working (and gives no error).
The problem occurs only in firefox, the same code works fine in IE7.
Has anyone else had this problem?
I activate my splitter like this:
[code]$("#MySplitter").splitter({
splitVertical: true,
outline: true,
sizeLeft: true,
anchorToWindow: true,
accessKey: "I"
});[/code]
and my tree like this:
[code]$("#JsTree").tree({
data: {
type: "json",
url: "JsTree.axd",
async: true
},
ui: {
context: [
{
id: "test",
label: "Test...",
icon: "images/Menu/test.gif",
action: function(NODE, TREE_OBJ) {
alert("hi");
}
}
]
},
rules: {
deletable: "all",
draggable: "all"
}
});[/code]