Skip to main content
February 26, 2023
Question

REcord action field in editable grid in appian

  • February 26, 2023
  • 3 replies
  • 0 views

Hello,

User Group Functionality Description Comments Grnators Action
        Edit
        Edit
        Edit
        Edit
Users Part of Group
Users Emailid Remove
A   x
B   x
C   x
   

These are two editable grids . When I press edit link in above grid , then below grid named "Users PArt of Group" should be displayed.

How to do that using recordaction field 

    3 replies

    stefanhelzle0001
    Brainy
    February 26, 2023
    February 27, 2023

    Here is the syntax how to call record action.

    a!recordActionField(
      actions: {
        a!recordActionItem(
       /* For the "action" parameter below, replace the record-action reference 
        * (recordType!Department.actions.update) with a valid record-action reference in your environment.
        */
         action: recordType!Department.actions.update,
         identifier: ri!departmentId
        ),
        a!recordActionItem(
       /* For the "action" parameter below, replace the record-action reference 
        * (recordType!Customer.actions.flag) with a valid record-action reference in your environment.
        */
         action: recordType!Customer.actions.flag,
         identifier: ri!customerId
        )
      }
    )

     https://docs.appian.com/suite/help/22.4/Record_Action_Component.html

    venkatrea696188
    March 6, 2023

    Make Grid selectable, then save that selected value in local variable, (In your case just put a  visibility condition a!isnotnullorempty(Local!v1), if u want that data in below grid (in grid give that local variable))