新しいビューに移動すると、sencha touch で検索フィールドの検索アイコンが消えます。また、ボタンを追加しているため、検索フィールドが少し縮小されます。検索フィールドの縮小を防ぐにはどうすればよいですか、または検索フィールドのアイコンを維持するにはどうすればよいですか?
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」を表示すると、検索フィールドの拡大鏡アイコンが消えます。