tasks lists

Hi.......

I am having the requirement on click of one choice in dropdown field. Need to show lists of more than 20 actions in the actions lists tab. I am not getting logic on this, Can someone help on this?

  Discussion posts and replies are publicly visible

Parents Reply
  • No the actual requirement is on click of credit action, currently getting those actions ,bcoz of this code 

    item: a!dropdownField(
    showWhen: ri!actionTypes_txt <> cons!CR_TXT_PENDING_ACTION_TABS[2],
    label: cons!CR_LAB_PENDING_ACTION_FILTERS[4],
    labelPosition: "ABOVE",
    placeholderLabel: "--- Select a Value ---",
    choiceLabels: touniformstring({
    index(
    cons!MODULE_NAMES,
    {
    1,
    2,
    3
    }
    ),
    "QA",
    "Action"
    }),
    choiceValues: touniformstring({
    index(

    cons!FLOW_IDS,


    {
    1,
    2,
    3,
    5
    }
    ),

    "Facilities"

    }),
    value: local!moduleId_int,
    saveInto: {
    local!moduleId_int
    },
    validations: {}
    )

    Now ON click of credit ction,I need to get all actions not only that action, How do i get?

Children