我想在点击它时添加一些功能或图标,在该poup中打开该网站链接的新组合。如何添加它。
{
xtype: "list",
store: "Plays",
itemId:"playsList",
loadingText: "Loading PlaysList...",
emptyText: '<div class="notes-list-empty-text">No PlayList found.</div>',
onItemDisclosure: true,
draggable:true,
itemTpl: '<div class="list-item-title">{title}</div><div class="list-item-narrative">{duration}</div><div class="list-item-hide">{hidden}</div>',
},
我想在onItemDisclosure按钮之前添加ie =&gt;我在下面给出了详细信息。所以当我点击它打开弹出窗口中的特定网站
屏幕上的输出就像这样
http://www.something.com 16 =&gt;
http://www.some.com 18 =&gt;
答案 0 :(得分:1)
我希望这会有所帮助。 :)
var outerPanel = new Ext.Panel({
fullscreen: true,
style: {
background:'#ffffff',
},
items: [
{
xtype: 'button',
text: 'click to open',
handler:function() {
var overlay = new Ext.Panel({
floating : true,
modal:true,
centered : true,
width : 700,
height : 500,
styleHtmlContent: true,
html: '<div><iframe style="width:100%;height:100%;" src="http://www.some.com/">Your device does not support iframes.</iframe></div>',
items: [],
}).show('pop', true);
}
}
]
})
<强>侨强>