Salesforce Components
Use Valorx Grid in an Aura Component
1
<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes,force:lightningQuickAction" access="global"> <aura:attribute name="recordId" type="String" /> </aura:component>

2
<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes,force:lightningQuickAction" access="global">
<aura:attribute name="recordId" type="String" />
<div style="background:white;">
<lightning:tabset selectedTabId="one">
<lightning:tab label="Enter_the_Tab_Name" id="one">
<valorxwave:ValorxRapidGrid
gridId="Account::Insert_The_Id"
height="600"
canChangeGrid ="true"/>
</lightning:tab>
<lightning:tab label="Enter_the_Tab_Name" id="two">
<valorxwave:ValorxRelatedRapidGrid
gridId="Contact::Insert_The_Id"
recordId="{!v.recordId}"
relationshipName='Insert_The_Relationship_Name'
height="600"
canChangeGrid ="true"/>
</lightning:tab>
</lightning:tabset>
</div>
</aura:component>
3

Use Valorx Grid in a Screen Flow
1

2

3

4

5

Working with Grid Data and Actions
Get Grid ID

Add an Input Variable in Flow

Last updated
Was this helpful?