2017-03-07 53 views
0

我想對按鈕的點擊與監聽器加載一個aspx頁面的特性「負載」:EXT - 遺漏的類型錯誤:無法讀取空

  <ext:Button ID="btnExport" runat="server" Text="Export to Excel" > 
       <Listeners> 
        <Click Handler="#{WndwToExcel}.load('\\Pages\\WebForm1.aspx');" /> 
       </Listeners> 
      </ext:Button> 

但是,當我按一下按鈕我收到這個JavaScript錯誤:

Uncaught TypeError: Cannot read property 'load' of null

有什麼建議嗎?

回答

0

那是因爲當時#{WndwToExcel}尚不存在

+0

但這個按鈕在此窗口中定義(WndwToExcel) – atroul

相關問題