Hi,
I have a json tree in a window. For example, I open the window and then i select a tree item and then i close the window. If i open the window again for selecting an other tree item. I get the previous item.
I guess, i have to do something when i close the window(in close event). What do i have to do ?
Here is my select event;
$(‘#idTree’).on(‘select’,function(event){
alert(typeof event);
var args = event.args;
var item = $(‘#idTree’).jqxTree(‘getSelectedItem’, args.element);
alert(item.value);
});
Can you help me ? thank you