Is it possible to hide the titlebar of an Ext.navigation.View? I don't see any options in the documentation.
Thanks!
Yes, you can do something like this:
Ext.define('Nav', {
extend: 'Ext.navigation.View',
config: {
fullscreen: true,
navigationBar: {
hidden: true
}
}
});
As an variation to jurodr's answer:
Ext.define("Nav", {
'Ext.navigation.View',
config: {
fullscreen: true,
navigationBar:false
}
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With