我正在使用ExtJS 2.3.0
我的链接如下 -
{ id: 'Id1', type: 'int', header: "Click me", navigateUrl: "www.google.com", width: 60 }
单击此按钮可在同一窗口中打开该页面。我想在新窗口中打开它。我知道我可以使用window.open
但是如何在navigateURL
请帮忙
答案 0 :(得分:1)
{ id: 'Id1', type: 'int', header: "Click me", navigateUrl: "www.google.com", target: "_blank", width: 60 }
答案 1 :(得分:0)
我通过添加"target": "_blank"
{ id: 'Id1', type: 'int', header: "Click me", navigateUrl: "www.google.com", "target": "_blank", width: 60 }