我是 ExtJS 的新手。尝试在应用程序中使用和自定义选项卡功能。
我想用Javascript Scope 的 ExtJs 范围内的参数调用一个函数。现在我可以在不传递参数的情况下调用函数而不会出现任何错误。当我通过传递参数(在代码中提到)调用相同的函数时,它给了我以下错误,因为函数没有获取任何值。
Uncaught TypeError: Cannot call method 'indexOf' of null
此功能应将新选项卡添加到选项卡面板。
当我通过从 ExtJS 范围传递参数来调用相同的函数时,它会成功添加选项卡。但不是当函数通过传递参数从javascript范围调用时。帮助我理解并解决这个问题。
Ext.onReady(function() {
var currentItem;
var tabs = Ext.widget('tabpanel', {
launch: function() {
_myAppGlobal = this;
},
renderTo: 'tabs',
resizeTabs: true,
enableTabScroll: true,
width: 850,
defaults: {
autoScroll: true,
bodyPadding: 10
}],
plugins: Ext.create('Ext.ux.TabCloseMenu', {
extraItemsTail: [
'-',
{
text: 'Closable',
checked: true,
hideOnClick: true,
handler: function (item) {
currentItem.tab.setClosable(item.checked);
}
},
'-',
{
text: 'Enabled',
checked: true,
hideOnClick: true,
handler: function(item) {
currentItem.tab.setDisabled(!item.checked);
}
}
],
listeners: {
aftermenu: function () {
currentItem = null;
},
beforemenu: function (menu, item) {
menu.child('[text="Closable"]').setChecked(item.closable);
menu.child('[text="Enabled"]').setChecked(!item.tab.isDisabled());
currentItem = item;
}
}
})
});
function addTab_inside(closeable, tabtitle, targetUrl) {
tabs.add({
title: tabtitle,
iconCls: 'tabs',
autoLoad: {url: targetUrl, callback: this.initSearch, scope: this},
closable: closeable,
autoScroll: true,
nocache: true,
discardUrl: false
}).show();
}
});
function addTab_Outside(){
addTab_inside(true, 'Test', 'test.php');
}
addTab_Outside 函数基于事件并在 xyz 元素上调用 onClick。