1
//Nonsensical
config.items=[Ext.create('Foo.register.AccountTypeForm',{config:arguments.hidden=true})];
//works ofc, but it looks untidy
arguments.hidden=true;
config.items=[Ext.create('Foo.register.AccountTypeForm',{config:arguments})];
ちょうど私が必要としていたので、本当にありがとう、デフォルトのパラメータを周りに投げてください。 – Alex