. UI bug fixes to the Create XML Form wizard:

- fixed issue where the Add To List button was enabled when nothing was selected - caused null-ptr exception when pressed in this state
 - fixed Next button enabled state when nothing is selected on the Configure Template Output Methods screen
. Removed "additional properties" checkbox and text in Create Web Content Wizard details page - not applicable for this wizard

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4052 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2006-10-06 16:00:40 +00:00
parent d5604fda3d
commit ae47e0dba2

View File

@@ -111,7 +111,7 @@ public class CreateXmlContentTypeWizard extends BaseWizardBean
protected ContentService contentService;
private DataModel templateOutputMethodsDataModel;
private List<TemplateOutputMethodData> templateOutputMethods = null;
private String fileExtension = "shtml";
private String fileExtension = null;
// ------------------------------------------------------------------------------
// Wizard implementation
@@ -200,6 +200,7 @@ public class CreateXmlContentTypeWizard extends BaseWizardBean
this.schemaRootTagName = null;
this.templateName = null;
this.templateOutputMethods = new ArrayList<TemplateOutputMethodData>();
this.fileExtension = "shtml";
}
@Override