mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
. 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:
@@ -111,7 +111,7 @@ public class CreateXmlContentTypeWizard extends BaseWizardBean
|
|||||||
protected ContentService contentService;
|
protected ContentService contentService;
|
||||||
private DataModel templateOutputMethodsDataModel;
|
private DataModel templateOutputMethodsDataModel;
|
||||||
private List<TemplateOutputMethodData> templateOutputMethods = null;
|
private List<TemplateOutputMethodData> templateOutputMethods = null;
|
||||||
private String fileExtension = "shtml";
|
private String fileExtension = null;
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------
|
||||||
// Wizard implementation
|
// Wizard implementation
|
||||||
@@ -200,6 +200,7 @@ public class CreateXmlContentTypeWizard extends BaseWizardBean
|
|||||||
this.schemaRootTagName = null;
|
this.schemaRootTagName = null;
|
||||||
this.templateName = null;
|
this.templateName = null;
|
||||||
this.templateOutputMethods = new ArrayList<TemplateOutputMethodData>();
|
this.templateOutputMethods = new ArrayList<TemplateOutputMethodData>();
|
||||||
|
this.fileExtension = "shtml";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Reference in New Issue
Block a user