Dynamic UI components building using API JSON response

I have to create Dynamic UI meaning based on the API JSON response received.

I will be receiving the input type like check box or input and all the other attributes in JSON response, using that can i create the component and create dynamic UI?

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to liyakathullahkhana0001

    Yes this would work, updated the code sample. All you need to do is use fromJson to get the map from the json.

    There is no official document to support the feasibility AFAIK. It really depends on your context.

    a!localVariables(
      local!questionTxt,
      local!questions: if(a!isNotNullOrEmpty(local!questionTxt),
        a!fromJson(local!questionTxt),
        ""
      ),
      local!questionMap: {
        a!map(
          identity: 423,
          text: "What is the Client's country of registration?",
          questionType: a!map(
            identity: 1,
            name: "Single Select",
          ),
          questionCode: "GEO-Q1",
          order: 1,
          isMandatory: true,
          isReadOnly: true,
          possibleAnswers: {
            a!map(
              identity: 7085,
              text: "Afghanistan",
              order: 1,
              value: "AF"
            ),
            a!map(
              identity: 7086,
              text: "Åland Islands",
              order: 2,
              value: "AX"
            )
          },
          value: null
        )
      },
      {
        a!paragraphField(
          value:  local!questionTxt,
          saveInto: local!questionTxt
        ),
        a!forEach(
          items: local!questions,
          expression: a!match(
            value: fv!item.questionType.name,
            equals: "Single Select",
            then: a!dropdownField(
              label: fv!item.text,
              placeholder: "Choose a value",
              choiceLabels: fv!item.possibleAnswers.text,
              choiceValues: fv!item.possibleAnswers.value,
              value: fv!item.value,
              saveInto: fv!item.value
            ),
            default: {}
          )
        )
      }
    )

Children