我正在开发一个 ExtJs 应用程序。我想使用如下的树列表:
{
xtype: 'treelist',
bind: '{navimgation}',
...
}
我navimgation
在我的模型中如下:
navimgation: {
type: 'tree',
root: {
children: [{
text: 'Node1',
leaf: true,
qtip: 'My qtip 1'
},{
text: 'Node2',
leaf: true,
qtip: 'My qtip 2'
}
...
]
}
}
当鼠标悬停在节点上时,我想显示一个工具提示,但它不起作用。