我想突出顯示Ext.tree.Panel中的一些節點。如何在Ext4中將css類添加到樹節點?
// add a class with to highlight the node
myTreeNode.getUI().addClass('highlightclass');
// remove the class to remove the highlighting
myTreeNode.getUI().removeClass('highlightclass');
什麼是的ext4等價的:
在Ext3中,我加入了類樹節點的UI對象來實現這一點? 我已經能夠通過設置我的節點模型的iconCls字段來更改圖標,但我真的很想能夠設置一個允許我突出顯示整個節點的類。
絕對是您的場景的更好解決方案。 – Reimius
工程就像一個魅力,謝謝! – Monsignor
我發現這個班級每次父母被展開或摺疊時都消失 – WendyG