0
導航到新視圖時搜索字段的搜索圖標在sencha touch中消失,而且由於我添加了額外的按鈕,因此搜索字段也縮小了。如何防止搜索字段的縮小或如何維護搜索字段圖標?搜索字段的搜索圖標在sencha中消失
Ext.define('Proj.view.Home', {
extend: 'Ext.navigation.View',
xtype: 'homeTabItem',
id: 'home',
this.add(
{
xtype: 'toolbar',
id: 'SeachToolbar',
docked: 'top',
items: [
{
xtype: 'searchfield',
align: 'left',
width:200,
placeHolder: 'Search'
},
{
id : 'searchButton_h',
xtype : 'button',
iconCls : 'search',
iconMask : true,
align : 'left',
scope:this,
handler:this.onSearchKeyUp
},
{
id : 'homeSelect',
xtype: 'selectfield',
hidden:true;
iconMask : true,
align : 'right',
width : '20%',
}
]});
在一個視圖推我做「homeSelect」可見我的serchfield的放大鏡圖標消失..
是否確實粘貼工作的代碼?你在配置對象中調用add函數... – 2013-04-23 12:58:52