Mobile Framework

Hide the Archibus Logo on a Mobile App

By default, the Archibus logo is displayed in the center of the title bar. You might want to suppress the logo if an app dialog needs the center portion of the title bar for commands or icons.

The visibility of the logo is controlled by the Common.view.navigation.NavigationBar displayLogo property.

You can hide the logo by setting the displayLogo property to false.

Example

Ext.define('App.view.Main', { extend: 'Common.view.navigation.NavigationView', xtype: 'main', config: { navigationBar: { backButton: { cls: 'x-button-back' }, hideSaveButtons: true, // Prevent the Archibus logo from being displayed in the main title bar displayLogo: false }, items: [ { xtype: 'mainPanel' } ] } });