TreePanel OnReadData EventMask

  1. #1

    TreePanel OnReadData EventMask

    How to disable EventMask when using OnReadData procedure to load data? There is nice animated circle next to node and EventMask over the whole control is unnecessary.

    <ext:TreeStore runat="server" OnReadData="LoadData">
       <Proxy>
           <ext:PageProxy />
       </Proxy>
    </ext:TreeStore>
  2. #2
    Set TreeView's LoadMask to false, as shown below:

    <ext:TreePanel>
        <View>
            <ext:TreeView LoadMask="false" />
        </View>
    </ext:TreePanel>
  3. #3
    Perfect. It works. Thanks.
  4. #4
    You're welcome.

Similar Threads

  1. Replies: 10
    Last Post: Sep 20, 2017, 2:05 AM
  2. [CLOSED] Store timeout onReadData
    By rbtceo in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Aug 22, 2014, 3:59 AM
  3. Replies: 9
    Last Post: Oct 03, 2013, 12:16 PM
  4. Replies: 1
    Last Post: Oct 26, 2012, 4:49 AM
  5. [CLOSED] Store.OnReadData + Form data
    By aisi_it_admin in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Oct 15, 2012, 7:10 AM

Posting Permissions