ic3
ic3

Reputation: 7680

jstree not working on IE9

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

Answers (2)

user3066201
user3066201

Reputation: 1

Add cache field:

'data': {
    "url": 'YourUrl',
    "data": { yourparameter},
    "cache":false // <- added
}

Upvotes: 0

ic3
ic3

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

Related Questions