2 thoughts on “How to display a Flow screen with 2 columns in Salesforce?”
Thank you for the solution, I am trying to call a flow from a lighting component and want to show 2 cloumns there , which parameters should i send for below call in lightning cmp
var createContactFlowId = component.find("createContactFlowId");
var inputVariables ;/*= [
{
name:"flowLayout",
type:"String",
value:"twoColumn"
}
];*/
Thank you for the solution, I am trying to call a flow from a lighting component and want to show 2 cloumns there , which parameters should i send for below call in lightning cmp
var createContactFlowId = component.find("createContactFlowId");
var inputVariables ;/*= [
{
name:"flowLayout",
type:"String",
value:"twoColumn"
}
];*/
createContactFlowId.startFlow("FlowName",inputVariables);
above code works as a single colomn, when i pass and flowLayout as input variables it throws an error.
Can you review and let me know the solution.
Thanks.
This is not supported in starting the flow from Lightning component.