I am experiencing a weird issue in ie9. When i click an item in the treeview. the whole treeview panel scrolls up so that is at the top of the page. I'm using ext4
Code:
var tree = Ext.create('Ext.tree.Panel', {
title: 'Core Team Projects',
width: 200,
height: 500,
renderTo: 'tree-example',
rootVisible: false,
store: store,
multiSelect: false,
singleExpand: true,
listeners: {
itemclick: function (node, event) {
// this causes the tree view to scoll.
}
},
columns: [{
xtype: 'treecolumn',
text: 'Task',
flex: 2,
sortable: true,
dataIndex: 'task'
}]
});
image1: this is how the page looks when it intially loads.
page1.jpg
image2: When i click in IE9 the page scrolls to the op of the tree view
page2.jpg