如果我点击portlet按钮,它必须打开新的选项卡,并直接到网站,我有调用.不幸的是,我不能做到这一点.我已经尝试看 Sencha 讨论和东西,我什么也没看到.当我点击按钮portlet,什么也没发生这是我下面的代码..
var btnProductsAndServices = {
xtype: 'portletbutton',
icon: '/test.png',
tooltip: 'Products & Services',
text: 'Products & Services',
click : window.open("https://www.w3schools.com")
};
我也试过这样做,但没有成功。
var btnProductsAndServices = {
xtype: 'portletbutton',
icon: '/test.png',
tooltip: 'Products & Services',
text: 'Products & Services',
click : {
handler: function redirect(){
window.open("https://www.w3schools.com")
}
}
};
1条答案
按热度按时间gtlvzcf81#
我不知道
portletbutton
是什么,但你可以像下面这样用button
来做:https://fiddle.sencha.com/#fiddle/3aka