Skip to content

Instantly share code, notes, and snippets.

@xenophy
Last active December 25, 2015 12:29
Show Gist options
  • Save xenophy/6976832 to your computer and use it in GitHub Desktop.
Save xenophy/6976832 to your computer and use it in GitHub Desktop.
Ext.define('MyApp.form.Panel', {
extend: 'Ext.form.Panel',
initComponent: function() {
var me = this;
// スーパークラスメソッドコール
me.callParent(arguments);
Ext.applyIf(me.getForm(), {
getValue: function(key) {
return this.getValues()[key];
}
});
}
});
// うにょうにょして、実際使うときは
var fp = // フォームパネル取得処理
fp.getValue('key');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment