Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 691
Thomas Vervik Avatar asked Sep 14 '12 09:09

Thomas Vervik


1 Answers

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

like image 150
olegtaranenko Avatar answered Nov 05 '22 11:11

olegtaranenko