sencha-touch-2

Disable store load mask in Sencha 2


The Sencha store is automatically adding a ajax loader mask when populating the store, but I want to hide it since I have made a more generic mask which is shown every time the app does a ajax request.

How can I hide the store load mask? Tried to look in the documentation, but didnt find any appropriate field/method there:

See attachement:

enter image description here


Solution

  • The property exists: loadingText, which you have set to null.

    {
        xtype: 'list',
        store: 'Store',
        loadingText: null, // for ST 2.3.0 set it to false
        ....
    }
    

    Cheers, Oleg