事件

2014-09-24 52 views
0

我有一個dijit.layout.contentPane定義爲:事件

<div dojoAttachPoint="X_containerInternal" dojoType="dijit.layout.BorderContainer" splitter="true" region="center" gutters="true" > 
       <div dojoAttachPoint="X_objectDetail" dojoType="dijit.layout.ContentPane" region="left" splitter="true" 
        style="width:50%;"> 
       </div> 
       <div dojoAttachPoint="X_documentDetail" dojoType="dijit.layout.ContentPane" region="center" splitter="true"> 
       </div> 
      </div> 

當裝載開始我加了負載圖標,並且當數據被放置在X_documentDetail(dojoattachpoint)我想隱藏加載圖標,但我沒有收到當加載完成時可以在attachchevent中指定的事件。

請指導。 由於提前

回答

0

也許你可以試試:

dojo.connect(_container_, "onLoad", function(){ /* your script */});