default value for active checkbox should be true

This commit is contained in:
Sebastian Sdorra
2012-05-26 10:49:56 +02:00
parent 7e7f6191ed
commit fd8dd6202a

View File

@@ -106,7 +106,8 @@ Sonia.user.FormPanel = Ext.extend(Sonia.rest.FormPanel,{
fieldLabel: this.activeText,
name: 'active',
xtype: 'checkbox',
helpText: this.activeHelpText
helpText: this.activeHelpText,
checked: true
});
Ext.apply(this, Ext.apply(this.initialConfig, {items: items}));