我有一個基本的ExtJS 4.0手風琴。我想在一個面板的文本內部有一個內聯鏈接,它將關閉該面板並打開另一個面板。Extjs4手風琴 - 面板之間的內聯鏈接
在下面的例子中,面板1中的鏈接應該打開面板2.什麼樣的點擊功能可以在這裏工作?
Ext.create('Ext.panel.Panel', {
title: 'Accordion Layout',
layout:'accordion',
layoutConfig: {
// layout-specific configs go here
titleCollapse: false,
animate: true,
activeOnTop: true
},
height: 300,
width: 400,
items: [{
title: 'Panel 1',
id: 'p1',
html: 'Text goes here. <p><a id="linkP2" href="#">Go to panel 2</a></p>'
},{
title: 'Panel 2',
id: 'p2',
html: 'Panel content!'
},{
title: 'Panel 3',
id: 'p3',
html: 'Panel content!'
}],
renderTo: Ext.getBody()
});
這有幫助,但我最終找到了一個相當簡單的解決方案。在啓用鍵盤切換時,這是一個不錯的方法。 – Voodoo