Posts

Remove the default colors from Colorfield dialog in AEM

Image
Add the property showDefaultColors="{Boolean}false"   Once you will add this property. All the default colors will be disappear from the colorfield dialog. You can show your custom colors as per the requirement. Please see the below for the reference.  <backgroundColor jcr:primaryType="nt:unstructured" sling:resourceType="granite/ui/components/coral/foundation/form/colorfield"     showDefaultColors="{Boolean}false"     text="Background Color"     fieldLabel="Background Color"     name="./backgroundColor"     showProperties="{Boolean}false">   <items jcr:primaryType="nt:unstructured"> <red jcr:primaryType="nt:unstructured" value="#FF0000"/>     <white jcr:primaryType="nt:unstructured" value="#FFFFFF"/>     <black jcr:primaryType="nt:unstructured" value="#000000"/>   </items> </backgroundColor> Yo...

How to Deleted Alfresco Content Permanently

if you want to delete the node permanently in alfresco use the below aspects.     <aspect name="sys:temporary">          <title>Temporary</title>          <!-- Explicitly turn off archiving for all nodes with this aspect -->          <archive>false</archive>     </aspect>
Image
                       All Steps to Create a Custom Page in Alfresco Share     Step1: Adding the Surf Page C:\Alfresco\tomcat\webapps\share\WEB-INF\classes\alfresco\site-data\pages\msat.xml Step2: Adding the Surf Template Instance C:\Alfresco\tomcat\webapps\share\WEB-INF\classes\alfresco\site-data\template-instances\msat.xml Step 3 : Adding the Surf Template C:\Alfresco\tomcat\webapps\share\WEB-INF\classes\alfresco\templates\custom\alfresco\msat.ftl Step4: Adding the Properties File C:\Alfresco\tomcat\webapps\share\WEB-INF\classes\alfresco\messages\msat.propeties Step4: Registor the propeties file C:\Alfresco\tomcat\webapps\share\WEB-INF\classes\alfresco\slingshot-application-context.xml Step5 : Adding the Page to Current Site Pages C:\Alfresco\tomcat\webapps\share\WEB-INF\classes\...