52,782
社区成员
发帖
与我相关
我的任务
分享
doAdd = function(){
this.getSelectionModel().clearSelections(); //请注意那个"this"
};
this.EditGrid = new Ext.grid.GridPanel({
bbar: [{
text: '添加',
handler:function(){doAdd()}
}]
});
Ext.namespace("Ext.wentao");
Ext.wentao.Person = Ext.emptyFn;
Ext.apply(Ext.wentao.Person.prototype, {
name : "刘文涛",
sex : "男",
print : function() {
alert(String.format("姓名:{0},性别:{1}", this.name, this.sex));
}
});