Getting error in saveInto

Certified Associate Developer

 Hi,

I'm getting error related to saveInto parameters inside submitLink() func. I used below logic

 

value:not(ri!showTriggered_bl),

saveInto:{

ri!showTriggered_bl,

ri!saveIntos_save

}

Where saveIntos_save is an array of type "save" which holds multiple values from the parent form.

Error Message which i'm getting is something like "You must specify a variable to save into, such as ri!name << fn!sum. Received: Boolean", Can someone please tell me why is this happening?

 

Thanks in advance

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Associate Developer
    in reply to Josh
    a!columnLayout(
    contents:rule!ManagerSite_SingleBox(
    boxLabel_txt:"Create New Groups",
    imageFieldLabel_txt:"New Groups - Image",
    iconNewsEvent_txt:"PEOPLE_4",
    showTrigger_bl:ri!showNewGroup_bl,
    dynamicLinkLabel_txt:"New Groups - Dynamic Link",
    saveIntos_saves:{
    a!save:(
    ri!showDepartmentRecord_bl,
    false
    ),
    a!save(
    ri!showManageGrantors_bl,
    false
    ),
    a!save(
    ri!showChildMembers_bl,
    false
    ),
    a!save(
    ri!showUserMembership_bl,
    false
    )
    }
    )
    ),
Children