Reputation: 7680
JStree is not working properly with IE9. You can check this in their demo page here. Trying internally, nodes can not be collapsed/expanded and the whole tree is expanded after load. Some hint on this ?
Upvotes: 3
Views: 3390
Reputation: 1
Add cache field:
'data': {
"url": 'YourUrl',
"data": { yourparameter},
"cache":false // <- added
}
Upvotes: 0
Reputation: 7680
Found a solution, change the IE mode in the header (switch off quirk mode) :
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
It's working for IE8 and IE9.
Upvotes: 4