删除标题栏或在sencha中添加按钮

时间:2013-12-18 18:04:00

标签: android cordova sencha-touch sencha-touch-2

这是我在android上部署的sencha应用程序的屏幕截图。我在顶部看到两个蓝色条。我想要的只是删除其中一个。知道怎么做吗?

Remove title bar or add button to it

下面给出的代码。希望这会有所帮助

Ext.define('appointMeDr.view.signUp.SignUp',{
extend:'Ext.form.Panel',
xtype:'signUpXType',
config:{
    scrollable:'vertical',         
    items:[
         {
        xtype: 'toolbar',
        title: 'Sign Up',
        docked: 'top',
       items:[ {
            xtype:'button',
            text: 'Back',
            ui:   'back',
            cls: 'back',
            name: 'backToLogin'
        } 
       ]
    },
    { 
        xtype:'fieldset',  
         defaults :{
            labelWidth : '120px'
        },
        items:[
        {
            xtype:'textfield',
           label:'<sup>*</sup> Full Name: ',
            placeHolder:'Full Name',
            name:'name'               
        },
        {
            xtype: 'emailfield',
            label: '<sup>*</sup> Email',
            placeHolder:'Email',
            name: 'email'
        },
        {
            xtype:'textfield',
            label:'<sup>*</sup> User Name: ',
            placeHolder:'User Name',
            name:'username'               
        },
        {
            xtype: 'passwordfield',
            label: '<sup>*</sup> Password',
            placeHolder:'Password',
            name: 'password'
        },
        {
            xtype:'textfield',
            label:'<sup>*</sup> Age: ',
            placeHolder:'Age',
            name:'age'               
        },
         {
            xtype: 'selectfield',
            name:'gender',
            label: 'Gender',
            options: [
            {
                text: 'Male',  
                value: 'Male'
            },
            {
                text: 'Female', 
                value: 'Female'
            }
            ]
        },
        {
            xtype:'textfield',
            label:'<sup>*</sup> Address : ',
            placeHolder:'Address',
            name:'address'               
        },
        {
            xtype: 'selectfield',
            name:'Domain',
         label: 'Select Domain',
            options: [
            {
                text: 'Patient',  
                value: 'first'
            },

            {
                text: 'Doctor', 
                value: 'second'
            },

            {
                text: 'Guardian',  
                value: 'third'
            },
            {
                text: 'Attendant',  
                value: 'forth'
            }
            ]
        }

        ]
    },{
        xtype:'panel',
        margin:'10px',
        items:[
        {
            xtype:'button',
            text:'Sign Up',
            flex:1,
            name:'userSignUpBtn',
            docked:'right'
        }
        ]
    }
    ]
}

});

1 个答案:

答案 0 :(得分:5)

您可能正在使用导航视图并将包含工具栏的另一个面板加载到导航视图中,因此您得到的是 1.导航视图中的蓝色栏 2.面板视图中的第二个蓝色条
您可以做的是将视图直接加载到视口而不是导航视图中 希望这会有所帮助:)