Hi,
I am calling a flow from a Global action. When I launch the flow I cannot see the next button at the bottom unless I click to make the global action screen fullscreen. This is an unecessary click, ideally I would like the Next (and aditional buttons on further flow screens) to display as intended. Component code below:
<aura:component implements="flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,force:lightningQuickActionWithoutHeader" access="global" >
<aura:handler name="init" value="{!this}" action="{!c.init}" />
<lightning:flow aura:id="flowData" />
</aura:component>
Controller:
({
init : function (component) {
// Find the component whose aura:id is “flowData”
var flow = component.find("flowData");
// In that component, start your flow. Reference the flow’s Unique Name.
flow.startFlow("Flow_Test_No1");
},
})
Any help would be greatlt appreciated, screenshot attached of the missing button also.
Cheers
1 件の回答
Hi Grant,
Modify lightning component as mentioned here-:
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/components_config_for_flow_screens_navigate_custom.htm
https://salesforce.stackexchange.com/questions/288493/flow-embedded-within-a-lightning-component-cant-navigate-programmatically
Thanks,
Sakshi