4

是否可以隐藏 Ext.navigation.View 的标题栏?我在文档中看不到任何选项。

谢谢!

4

2 回答 2

11

是的,你可以这样做:

Ext.define('Nav', {
  extend: 'Ext.navigation.View',

  config: {
    fullscreen: true,

    navigationBar: {
        hidden: true
    }
  }
});
于 2012-04-06T01:19:41.110 回答
3

作为 jurodr 答案的变体:

Ext.define("Nav", {   
  'Ext.navigation.View',
   config: {   
     fullscreen: true,
     navigationBar:false   
     }   
});         
于 2013-08-01T07:19:15.863 回答