2014-01-29 318 views
0

超鏈接我使用ExtJS 2.3.0如何打開新窗口

我有一個鏈接如下 -

{ id: 'Id1', type: 'int', header: "Click me", navigateUrl: "www.google.com", width: 60 } 

點擊此打開在同一窗口的頁面。我想在新窗口中打開它。我知道我可以使用window.open,但我怎麼能寫這裏面navigateURL

請幫

回答

0

我把它加入"target": "_blank"

{ id: 'Id1', type: 'int', header: "Click me", navigateUrl: "www.google.com", "target": "_blank", width: 60 } 
1
{ id: 'Id1', type: 'int', header: "Click me", navigateUrl: "www.google.com", target: "_blank", width: 60 } 
工作