我已经实施了一个sencha touch phone gap application on ipad.
使用厨房水槽应用程序及其文件。
它显示所有演示对象(列表用户界面按钮等)。
I need to add a split view as home page as per our application requirement on sencha touch appp.
当我执行应用程序时,它显示标题为“厨房水槽”应该如何将其重命名为我的应用程序名称
我已经实施了一个sencha touch phone gap application on ipad.
使用厨房水槽应用程序及其文件。
它显示所有演示对象(列表用户界面按钮等)。
I need to add a split view as home page as per our application requirement on sencha touch appp.
当我执行应用程序时,它显示标题为“厨房水槽”应该如何将其重命名为我的应用程序名称
在kitchen sink
应用程序中,有两个文件夹phone
和tablet
,每个文件夹用于特定设备。
在每个文件夹中,都有一个名为的文件Main.js
,它是应用程序的起始文件。
因此,在那Main.js
,改变title
这里...
{
id: 'mainNavigationBar',
xtype : 'titlebar',
docked: 'top',
title : 'My Title',
items: {
xtype : 'button',
.....
.....
编辑 :
对于您的拆分视图需要,您可以使用 hbox 布局。
Ext.create('Ext.Container', {
fullscreen: true,
layout: 'hbox',
items: [
{
xtype: 'panel',
html: 'TableView/Rootview goes here ...',
flex: 1
},
{
xtype: 'panel',
html: 'Message Detail view goes here ....',
flex: 2
}
]
});