我定義了一個Ext.window,裏面有一個窗體,窗體包含一個網格。當我試圖通過window.show()第一次點擊按鈕顯示它,它的工作正常, 但是當我第二次單擊按鈕「this.object爲null或不是一個對象,行: 12「出現錯誤。我點擊按鈕加載網格存儲。 有人幫助。Extjs:「this.view is null or not an object」error
回答
你對窗戶的關注是什麼?如果它是「銷燬」,這是默認的,它會銷燬所有子元素。嘗試將窗口的「closeAction」設置爲「隱藏」。
would'nt window.close()工作? – sainath 2012-03-02 05:31:22
window.close()確實會關閉窗口。但是,他的問題似乎在第一次之後顯示。窗口的默認關閉操作是「銷燬」,如果您有任何子組件,或者甚至是對所述對象的變量引用,則可能會導致問題,您將在稍後嘗試引用它。 – 2012-03-02 05:35:30
如果您使用closeAction:'close'(默認值),則無法使用show()重新打開該窗口。如果您使用closeAction:'hide',那麼窗口可以顯示並隱藏,但您必須使用hide()和show()調用來執行此操作。 我從亞當的線索得到了這個從其他stackoverflow q's。 謝謝亞當。問題解決了 – sainath 2012-03-02 05:42:56
- 1. 「getElementById(...)。options is null or not an object」in IE7 only
- 2. 「numpy.ndarray is object is callable」error in initiated an function
- 3. $ .each returns'undefined is not an object'
- 4. 多個IS NOT NULL使用OR操作
- 5. JS:「TypeError:'undefined'is not an object」
- 6. customAdapter for object is not
- 7. 「'generator'object is not subcriptabletable」error
- 8. React code throwing「TypeError:this.props.data.map is not an function」
- 9. Where-object-or not working
- 10. View is not reading session or flashdata
- 11. T-SQL IS NOT NULL VS NOT NULL性能
- 12. flash actionscript error 5007 while file is not linked or included in any way
- 13. error'_'is not defined no-undef
- 14. xo lint error:`document` is not defined
- 15. Javascript:「[classname] is not defined」error
- 16. Ruby String Object Empty or Not?
- 17. Javascript undefined error:`this` is null
- 18. JPQL查詢IS NOT NULL
- 19. Extjs superboxselect keyup event is not firing
- 20. SSIS派生列IS NOT NULL或OR表達式
- 21. 在Windows上'Java is not recognized ...'error'
- 22. DataMapper的IS NOT NULL查詢
- 23. sqlalchemy IS NOT NULL請選擇
- 24. PDO和IS NOT NULL功能
- 25. psql IS NOT NULL返回f
- 26. if(String == null or String ==「」)not activate
- 27. beforeresize and resizedrag is not get called extjs
- 28. 「x IS NULL」和「NOT(x IS NOT NULL)」之間的區別是什麼?
- 29. 'Microsoft.ACE.OLEDB.12.0'provider is not registered on local machine error
- 30. SubSonic3 Linq查詢生成 「IS NOT NULL」,而不是 「IS NULL」
需要看一些代碼才能知道問題是什麼 – Geronimo 2012-03-02 05:20:18
ya,這是代碼 – sainath 2012-03-02 05:28:15