Posts

Showing posts from October, 2017

How to use Lightning Toast in Visual force Page

As of now while including the lightning components in vf page some standard functionalities doesn't work. One among them is Toast functionality . There is a workaround to use Toast in VF pages Below are steps, Create new lightning component 1.  Create Lightning Component  VFToast.cmp <aura:component >     <aura:attribute name="toastmsg" type="String" default=""/>     <aura:attribute name="toastType" type="String" default=""/>     <aura:attribute name="toastcss" type="String" default=""/>    <aura:handler name="init" value="{!this}" action="{!c.doInit}" />     <div class="slds-notify_container slds-is-relative" id="toastCmp">         <div  class="{!v.toastcss}" role="alert">             <div class="slds-notify__content">                 <h2 class=&qu

Lightning Data Service

Lightning Data Service  to view,edit,create or delete a record in your lightning component without using any Apex code. If you worked on visualforce then you can think about Lightning Data Service as the Lightning Components   version   of the Visualforce standard controller. If you have a Lightning application that creates, reads, updates, or deletes records, Lightning Data Service is the best, most efficient way to do create,read,update and delete operations. Important Attributes:- All you have to do is include force:recordData in your component recordId :  specifies the record id to load. Records can’t be loaded without a recordId that means you component gets to be inserted. layoutType : specifies the layout (FULL or COMPACT) that is used to display the record. Fields : specifies which fields in the record to query. targetRecord : This attribute indicates populated record targetFields : This attribute indicates populated record with simplifiedview of the loa