• rob will 5
  • NEWBIE
  • 0 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
Hi Guys,
I am trying to call standard create new group (CollaborationGroup) action in lightning component for experience builder (Community)
In standard new button once we put group name, access type etc it ask for "Save and Next" button and next page ask to upload group image whereas when i use e.force:createRecord in lightning it display only one screen group name etc and just save button does not show next page to upload group image.

 NewGroup : function (component, event, helper) {
    var createRecordEvent = $A.get("e.force:createRecord");
    createRecordEvent.setParams({
        "entityApiName": "CollaborationGroup"
    });
    createRecordEvent.fire();



Thanks