• Ruturaj Dhaneshwar 1
  • NEWBIE
  • 0 Points
  • Member since 2019

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 1
    Likes Given
  • 4
    Questions
  • 0
    Replies
Hi Everyone,
I have a requirment to add "Register" button next to Login button on Community Home Page.
We have Customer Support community in which we are using standard "Jepson Template" provided by salesforce.I want Register button next to Login button in the image.
Is it possible ? If possible ,how to achieve it.Please help.

Thanks,
Ruturaj
I have one vf page on Customer Portal where I am displaying all the case
emails which Portal Users have access.
There is Reply option next to every mail which allows user to reply tio that mail .
By selecting on it,it opens System's Mail app with From,To,Subject firlds and all threads being attached.
Problem,I having is when Emails list for a case increases i.e. threads increases,it does not opens mail app.

Here is my vf page code:
<apex:repeat value="{!emailList}" var="eml">
                <tr style="background-color:white;">
                    <td style="padding:4px 2px 4px 5px;"><apex:outputLink value="mailto:{!eml.FromAddress}?Subject=RE:%20{!eml.Subject}&cc={!eml.ToAddress}&body=%0D%0D%0D%0D%E2%80%94%E2%80%94Original%20Message%E2%80%94%E2%80%94%0DFrom:%20{!eml.FromName}%0DSent:%20{!eml.MessageDate}%0D%0D{!eml.TextBody}" target="_blank">Reply</apex:outputLink></td>

                    </td>
                </tr>
            </apex:repeat>

What change I should make in below link or anybody having other option to achieve this ,please help
Hello Guys,
I added User Self Registration Page Link  on my site.
However,when creating the user,it is showing me error as "The site is not enabled for registration."
Also I am enable to change "Site Login" settings for that site which is having value as "No Access" ,despite of being as System Administrator.

Can anybody please help as it is very urgent for te client.

Thanks,
Ruturaj
 

Hello All,
I have a requirement to show only "Email messages or posts"  on Feed Layout(No other field updates) of Case object in Community.
Also,internal users must be able to see all the updates of that case in Feed Layout.

Please guide me,if anybody has idea on how to achieve this?

Hello All,
I have a requirement to show only "Email messages or posts"  on Feed Layout(No other field updates) of Case object in Community.
Also,internal users must be able to see all the updates of that case in Feed Layout.

Please guide me,if anybody has idea on how to achieve this?
Hi, everyone.

I'm a Salesforce beginner and I need help with this code. I want to this "Don't show this again checkbox" makes the modal to stop showing up instead of the handler doInit. I thought that I could only change the function position on the component, but it doesn't work. Can any of you help me step by step to make this works, please? I appreciate your time and patience. Here is my code:

Component
<aura:component implements="flexipage:availableForAllPageTypes"
                access="global">
    
<!--<aura:handler name="init" action="{!c.doInit}" value="{!this}"/>-->
<aura:attribute name="isModalOpen" type="boolean" default="false"/> 
    
	<div class="demo-only">
        <!--Use aura:if tag to display/hide popup based on isModalOpen value-->  
        <aura:if isTrue="{!v.isModalOpen}">
  <section role="dialog" tabindex="-1" class="slds-modal slds-fade-in-open slds-modal_small" aria-labelledby="welcome-mat-95-label" aria-describedby="welcome-mat-95-content" aria-modal="true">
    <div class="slds-modal__container">
      <header class="slds-modal__header slds-modal__header_empty">
        <lightning:buttonIcon iconName="utility:close"
                                              onclick="{! c.closeModel }"
                                              alternativeText="close"
                                              variant="bare-inverse"
                                              class="slds-modal__close"/>
      </header>
      <div class="slds-modal__content" id="welcome-mat-95-content" style="overflow: hidden">
        <div class="slds-welcome-mat slds-welcome-mat_splash">
          <div class="slds-welcome-mat__content slds-grid">
            <div class="slds-welcome-mat__info slds-size_1-of-1">
              <div class="slds-welcome-mat__info-content">
                <h2 class="slds-welcome-mat__info-title" id="welcome-mat-95-label">The Lightning Experience is here!</h2>
                <div class="slds-welcome-mat__info-description slds-text-longform">
                  <p>Welcome to Lightning Experience, the modern, beautiful user experience from Salesforce. With a sales-and service-centric mindset, we focused on reinventing the desktop environment to better support your business processes.</p>
                </div>
                <div class="slds-welcome-mat__info-actions">
                  <button class="slds-button slds-button_brand">Learn More</button>
                 <div class="slds-m-top_large">
                    <div class="slds-form-element">
                      <div class="slds-form-element__control">
                        <div class="slds-checkbox">
                          <input type="checkbox" name="init" id="checkbox-8" onchange="{!c.doInit}" value="{!this}" />
                          <label class="slds-checkbox__label" for="checkbox-8">
                            <span class="slds-checkbox_faux"></span>
                            <span class="slds-form-element__label">Don&#x27;t show this again</span>
                          </label>
                        </div>
                      </div>
                    </div>
                  </div> 
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </section>
            
  <div class="slds-backdrop slds-backdrop_open"></div>
     </aura:if>
</div>
</aura:component>

Controller
({
   doInit: function(component, event, helper) { 
 var temperorySession = sessionStorage.getItem('tempSession');
  if(temperorySession == '1')
        {  
      console.log('===== in If');
            component.set("v.isModalOpen", false);
  }
        else
        {
      console.log('===== in else');
      component.set("v.isModalOpen", true);
  }
   sessionStorage.setItem('tempSession', '1');
 },
  
   closeModel: function(component, event, helper) {
      // Set isModalOpen attribute to false  
      component.set("v.isModalOpen", false);
   },
})

Style
 
.THIS.pop-up {
    display: block;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
}

.THIS .slds-modal__inner {
    background: yellow;
    padding: 20px;
    text-align:left;
}

.THIS .slds-modal__pinner {
    background: #fff;
    padding: 20px;
}

Best Regards,

Camila Camargo
Full Stack Developer