• Natacha Joseph
  • NEWBIE
  • 10 Points
  • Member since 2015
  • Software developer


  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 7
    Replies
Hi!
I'm trying to open my visualforce pages.  It was working last week, I did some screen capture for documentation purpose.
But today, I got this error for all my pages...

This site can’t be reached
agfaccessgroup--natacha2--c.visualforce.com’s server IP address could not be found.
DNS_PROBE_FINISHED_NXDOMAIN

Any idea on this ?
I tried it on Lightning and on Classic, still get the same error.
It's working on the production environment but it's not working on my sandbox....

thanks
Hi !
I have my Lightning Component in which I display the values for my record.
I use the lightning:outputField to display my fields values, and for my lookup field there is no link.  I cannot click on my field name to get to the other object.  Is it the way it works ?  Is it a bug ?  And if it is a bug, how can I display my field value with a link my user can click ?

 Thanks !

Here is the code of my component
 
<aura:component implements="flexipage:availableForRecordHome" access="global" >
    <aura:attribute name="recordId" type="string" />
    
    <lightning:recordViewForm recordId="{!v.recordId}" objectApiName="AGF_Proposal__c">

        <div class="slds-page-header__detail-row slds-section slds-is-open">
            <h3 class="slds-section__title slds-theme_shade">
                <span class="slds-truncate slds-p-horizontal_small" title="">Detail</span>
            </h3>
        </div>
        
        <lightning:layout horizontalAlign="space">
            <lightning:layoutItem class="slds-col slds-size--1-of-2">
                <lightning:outputField fieldName="AGF_Opportunity__c" />
                <lightning:outputField fieldName="AGF_Output_Language__c"/>
                <lightning:outputField fieldName="AGF_Discount__c" />
            </lightning:layoutItem>
            <lightning:layoutItem class="slds-col slds-size--1-of-2">
                <lightning:outputField fieldName="AGF_Status__c" />
                <lightning:outputField fieldName="AGF_Job_Start_Date__c" />
                <lightning:outputField fieldName="AGF_Alternative_proposal__c" />
            </lightning:layoutItem>
        </lightning:layout>
        
        <div class="slds-page-header__detail-row slds-section slds-is-open">
            <h3 class="slds-section__title slds-theme_shade">
                <span class="slds-truncate slds-p-horizontal_small" title="">System Information</span>
            </h3>
        </div>        
        
        <lightning:layout horizontalAlign="space">
            <lightning:layoutItem class="slds-col slds-size--1-of-2">
                <lightning:outputField fieldName="CreatedDate" />
            </lightning:layoutItem>
            <lightning:layoutItem class="slds-col slds-size--1-of-2">
                <lightning:outputField fieldName="LastModifiedDate" />
            </lightning:layoutItem>
        </lightning:layout>
       
    </lightning:recordViewForm>
</aura:component>

 
Hi !  I need to be able to drag and drop rows in a table in my Lightning component.   For now I have a table with 3 rows and some values that are hard coded...  Since i've never done that before, I start by searching some example in Google but I found only example of drag & drop between 2 sections like <div> ou <ul>
I found a great library to do drag & drop in tables but I could not manage to make it work in Lightning...  https://github.com/sindu12jun/table-dragger
Is it possible to do some drag & drop in a table in a Lightning Component ? Do I need to change that for div or something else ?
Can you give me an example that I can try and make it work ?   

Thank you !
Hi !
I need to merge multiple PDF files.
Is there any way to do that within Salesforce ?  I found some post on that but they are pretty old : 2011, 2009...

Thank you for your help !
Hi !
I have my Lightning Component in which I display the values for my record.
I use the lightning:outputField to display my fields values, and for my lookup field there is no link.  I cannot click on my field name to get to the other object.  Is it the way it works ?  Is it a bug ?  And if it is a bug, how can I display my field value with a link my user can click ?

 Thanks !

Here is the code of my component
 
<aura:component implements="flexipage:availableForRecordHome" access="global" >
    <aura:attribute name="recordId" type="string" />
    
    <lightning:recordViewForm recordId="{!v.recordId}" objectApiName="AGF_Proposal__c">

        <div class="slds-page-header__detail-row slds-section slds-is-open">
            <h3 class="slds-section__title slds-theme_shade">
                <span class="slds-truncate slds-p-horizontal_small" title="">Detail</span>
            </h3>
        </div>
        
        <lightning:layout horizontalAlign="space">
            <lightning:layoutItem class="slds-col slds-size--1-of-2">
                <lightning:outputField fieldName="AGF_Opportunity__c" />
                <lightning:outputField fieldName="AGF_Output_Language__c"/>
                <lightning:outputField fieldName="AGF_Discount__c" />
            </lightning:layoutItem>
            <lightning:layoutItem class="slds-col slds-size--1-of-2">
                <lightning:outputField fieldName="AGF_Status__c" />
                <lightning:outputField fieldName="AGF_Job_Start_Date__c" />
                <lightning:outputField fieldName="AGF_Alternative_proposal__c" />
            </lightning:layoutItem>
        </lightning:layout>
        
        <div class="slds-page-header__detail-row slds-section slds-is-open">
            <h3 class="slds-section__title slds-theme_shade">
                <span class="slds-truncate slds-p-horizontal_small" title="">System Information</span>
            </h3>
        </div>        
        
        <lightning:layout horizontalAlign="space">
            <lightning:layoutItem class="slds-col slds-size--1-of-2">
                <lightning:outputField fieldName="CreatedDate" />
            </lightning:layoutItem>
            <lightning:layoutItem class="slds-col slds-size--1-of-2">
                <lightning:outputField fieldName="LastModifiedDate" />
            </lightning:layoutItem>
        </lightning:layout>
       
    </lightning:recordViewForm>
</aura:component>

 
Hi !  I need to be able to drag and drop rows in a table in my Lightning component.   For now I have a table with 3 rows and some values that are hard coded...  Since i've never done that before, I start by searching some example in Google but I found only example of drag & drop between 2 sections like <div> ou <ul>
I found a great library to do drag & drop in tables but I could not manage to make it work in Lightning...  https://github.com/sindu12jun/table-dragger
Is it possible to do some drag & drop in a table in a Lightning Component ? Do I need to change that for div or something else ?
Can you give me an example that I can try and make it work ?   

Thank you !
Hi !
I need to merge multiple PDF files.
Is there any way to do that within Salesforce ?  I found some post on that but they are pretty old : 2011, 2009...

Thank you for your help !
I added the Custom Button to the 'Contact Layout' but still it says - Challenge not yet complete... here's what's wrong: 
The 'Google Link' custom button was not found. 
I am confused as to why this is happening. I am attaching screenshots and would appreciate any suggestions, thank you.
User-added image
User-added image
User-added image

There is a requirement that instead of generating more pdf files for all customer, can we combine all the files into a single PDF files or a zip file using Apex code