myElec_MainPanel = function() {
this.grid = new FeedGrid({
id:'feedgrid',
hideHeaders : true,
region : 'center',
autoScroll : true,
loadMask : {
msg : '<fmt:message key="pigeonhole.loading" />'
},
tbar : ['->',new Ext.form.Label({       
text : '<fmt:message key="Search.inputTitle" />'
}),'-',
new Ext.app.SearchField({id:'elec_search_button',store: new Ext.data.Store(), width:200,
onTrigger2Click:function(){
if(this.el.dom.value.trim()==''||this.el.dom.value==null){ 
Ext.Msg.alert('<fmt:message key="OsPkgGrid.prompt.title" />','<fmt:message key="Search.inputTitle" />'); 
return; 
}
loadDataToGrid(Ext.getCmp('myFeedGrid_mainPanel'),this.el.dom.value.trim());
this.triggers[0].show();
this.hasSearch = false;
}
,onTrigger1Click:function(){
loadDataToGrid(Ext.getCmp('myFeedGrid_mainPanel'),'');
this.el.dom.value = '';
this.triggers[0].hide();
this.hasSearch = false;  }
 })                    
         ]
}, {
searchKeyword : '' ,
tempRight : '',
'content.method' : ''

}, '.html', 'keySearchResults', 'resultSize');
      
myElec_MainPanel.superclass.constructor.call(this, {
items : { 
id : 'myFeedGrid-elec-main-view',
layout : 'border',
border : false,
height : Ext.getCmp('<%=winId%>').getInnerHeight(),
width : Ext.getCmp('<%=winId%>').getInnerWidth() - 205,
items : [this.grid]
}
});
};
部分代码  是什么情况啊?