Last week I tried disabled Create button when clicked and enabled it again as soon as page created. However, it work fine with save button, but it not right for Create button.
Hi,When I create a property page, input the content and click the Create button. The aem save very slow, the user don't understand it saving. So they click again on the Create button. After that the aem save two time and the content is duplicate (it create two page content). I want to display the gi...
Hi all,I using assetpicker for image field. But I want to set the image type (jpeg, jpg, png) for that fields. How to set the image type for assetpicker fields on properties of fields?Thanks & Best regards,BienHV
Hi Friends,I created a configuration page which have many checkboxs for AEM admin config the fields will display on the registration form. I config the configuration page use by the admin only. When the admin access to this page and checked to configuration to save into service. My site have two lan...
Hi,I used the code as below. it work for me.<a data-target="#${item.sectionTitle=='i love you' ? 'i-love-you' : (item.sectionTitle=='i hate you' ? 'i-hate-you' : itemList.index[0])}" class="links">${item.sectionTitle}</a>
Thank you for your help.I am tried this code:<a data-target="#${item.sectionTitle=='I love you' ? 'i-love-you' : itemList.index[0]}" class="links">${item.sectionTitle}</a>It worked.But I want more a conditon, example:if(title=='I love you') print 'i-love-you' elseif title='i-hate-you' print 'i-hate-...
Hi all,I want to replace white space in HTL sightly.Example: The sectionTitle is "I love you", I want the data-taget is "I-love-you"<ul data-sly-list="${contents.sections}"> <li class="title"> <a data-target="#${item.sectionTitle}" class="links">${item.sectionTitle}</a> </li></ul>Pl...