varStatusAction=app.appRegistry.getAction('Status.Actions');// Can call individual actionsStatusAction.showAnimation();StatusAction.setMessage('Loading navigation');// Can configure many things at onceStatusAction.configure({animation: true,message: 'Loading Databases',visible: true});
See a subview
For example, the schema subview:
varStatusAction=app.appRegistry.getAction('Status.Actions');varSchemaStatusSubview=app.appRegistry.getComponent('Schema.StatusSubview');varSchemaStore=app.appRegistry.getStore('Schema.Store');StatusAction.showAnimation();StatusAction.setSubview(SchemaStatusSubview);SchemaStore.setState({samplingState: 'timeout'});// Also possible to show the waiting stateSchemaStore.setState({samplingState: 'error',samplingTimeMS: 15001});