Due to some issue in Salesforce lightning css, helpText is not displaying properly in lightning out. Using following styles in your visualforce page, you can display the helptext properly.
CSS:
<style>
.slds-popover {
position: relative;
border-radius: .25rem;
width: 20rem;
min-height: 2rem;
z-index: 6000;
background-color: #fff;
display: inline-block;
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .16);
border: 1px solid #d9dbdd;
font-family: 'Salesforce Sans',Arial,sans-serif;
}
.slds-popover__body,
.slds-popover__footer,
.slds-popover__header {
position: relative;
padding: .5rem .75rem;
word-wrap: break-word;
}
.slds-popover--tooltip .slds-popover__body,
.slds-popover_tooltip .slds-popover__body {
font-size: .75rem;
color: #fff
}
.slds-popover--tooltip,
.slds-popover_tooltip {
width: auto;
max-width: 20rem;
background: #16325c;
border: 0;
}
.slds-nubbin--bottom-left:before,
.slds-nubbin_bottom-left-corner:before,
.slds-nubbin_bottom-left:before {
width: 1rem;
height: 1rem;
position: absolute;
transform: rotate(45deg);
content: '';
background-color: inherit;
bottom: -.5rem;
margin-left: -.5rem;
}
.slds-nubbin--bottom-left:after,
.slds-nubbin--bottom-left:before,
.slds-nubbin_bottom-left-corner:after,
.slds-nubbin_bottom-left-corner:before,
.slds-nubbin_bottom-left:after,
.slds-nubbin_bottom-left:before {
left: 1.5rem;
top: 100%;
margin-top: -.5rem;
}
</style>
Loading...
Here I have created a custom detail button(New Contact) on Account object with some pre-populated Contact field values from Account record using Lightning URL Hacking.
Go to setup | Object Manager | Account | Buttons, Links, and Actions | Create a new Button
Label – New Contact
Display Type – Detail Page Button
Behavior – Display in new window
Content Source – URL
URL Content:
/lightning/o/Contact/new?defaultFieldValues= OwnerId={!Account.OwnerId},AccountId={!Account.Id},MailingStreet={!Account.ShippingStreet},MailingCity={!Account.ShippingCity},MailingState={!Account.ShippingState},MailingPostalCode={!Account.ShippingPostalCode},MailingCountry={!Account.ShippingCountry}
Add this button to Account detail page layout, “Mobile & Lightning Action” section.
Note: This URL Hacking with button doesn’t work in Salesforce1 mobile app.
Loading...
Get Record Type Id by Name:
Id recordTypeId = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Partner Account').getRecordTypeId();
Get Record Type Id by Developer Name:
Id recordTypeId = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('Partner_Account').getRecordTypeId();
Get Record Type Developer Name by Name:
String recordTypeDevName = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Partner Account').getDeveloperName();
Get Record Type Developer Name by Id:
String recordTypeDevName = Schema.SObjectType.Account.getRecordTypeInfosById().get('01258000000DKIg').getDeveloperName();
Get Record Type Name by Developer Name:
String recordTypeName = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('Partner_Account').getName();
Get Record Type Name by Id:
String recordTypeName = Schema.SObjectType.Account.getRecordTypeInfosById().get('01258000000DKIg').getName();
Loading...
Redirect to New Attachment:
public PageReference redirectToNewAttachment() {
PageReference pgRef = new pageReference('/p/attach/NoteAttach?pid=' + String.valueof(acc.Id).subString(0, 15) + '&retURL=' + acc.Id);
pgRef.setRedirect(true);
return pgRef;
}
Redirect to New Note:
public PageReference redirectToNewNote() {
PageReference pgRef = new pageReference('/002/e?parent_id=' + String.valueof(acc.Id).subString(0, 15) + '&retURL=' + acc.Id);
pgRef.setRedirect(true);
return pgRef;
}
Loading...
Apex Class:
public class AccountExtensionController {
public String redirectUrl {get; set;}
public Boolean isRedirect {get; set;}
private Account acc {get; set;}
public AccountExtensionController(ApexPages.StandardController sc) {
this.acc = (Account)sc.getRecord();
}
public PageReference redirectToNewContact() {
isRedirect = true;
redirectUrl = '/003/e?retURL=' + acc.Id + '&accid=' + acc.Id;
return null;
}
}
Visualforce Page:
<apex:page standardController="Account" extensions="AccountExtensionController" showHeader="false" sidebar="false">
<apex:form >
<apex:commandButton value="New Contact" action="{!redirectToNewContact}" rerender="redirectPanel" />
<apex:outputPanel id="redirectPanel" >
<apex:outputPanel rendered="{!isRedirect}">
<!--redirect using javascript-->
<script type="text/javascript">
window.top.location.href = '{!redirectUrl}';
</script>
</apex:outputPanel>
</apex:outputPanel>
</apex:form>
</apex:page>
Loading...