Is it possible to display link in Paging grid column ?

Can we show link in the column of  paging grid along with text.

  Discussion posts and replies are publicly visible

Parents
  • Paging grid displays read-only text, links, and images in a grid that supports selecting, sorting, and paging. 

      load(
        local!pagingInfo: a!pagingInfo(
          startIndex: 1,
          batchSize: 4,
          sort: a!sortInfo(
            field: "label",
            ascending: true
          )
        ),
        local!sampleData: {
          type!LabelValue(
            label: "Smith, John"
          ),
          type!LabelValue(
            label: "Johnson, Michael"
          ),
          type!LabelValue(
            label: "Reed, Mary"
          ),
          type!LabelValue(
            label: "Cooper, Angela"
          )
        },
        with(
          local!dataForCurrentPage: todatasubset(
            local!sampleData,
            local!pagingInfo
          ).data,
          a!gridField(
            totalCount: length(
              local!sampleData
            ),
            columns: {
              a!gridTextColumn(
                label: "Name",
                field: "label",
                data: local!dataForCurrentPage.label,
                alignment: "LEFT"
              ),
              a!gridTextColumn(
                label: "Open Task",
                data: {
                  "Expense Approval",
                  "Expense Approval",
                  "Timesheet Approval",
                  "Timesheet Approval"
                },
                links: {
                  a!processTaskLink(
                    task: 1382
                  ),
                  a!processTaskLink(
                    task: 1377
                  ),
                  a!processTaskLink(
                    task: 536870918
                  ),
                  a!processTaskLink(
                    task: 268436948
                  )
                },
                alignment: "LEFT"
              )
            },
            value: local!pagingInfo,
            saveInto: local!pagingInfo
          )
        )
      )

Reply
  • Paging grid displays read-only text, links, and images in a grid that supports selecting, sorting, and paging. 

      load(
        local!pagingInfo: a!pagingInfo(
          startIndex: 1,
          batchSize: 4,
          sort: a!sortInfo(
            field: "label",
            ascending: true
          )
        ),
        local!sampleData: {
          type!LabelValue(
            label: "Smith, John"
          ),
          type!LabelValue(
            label: "Johnson, Michael"
          ),
          type!LabelValue(
            label: "Reed, Mary"
          ),
          type!LabelValue(
            label: "Cooper, Angela"
          )
        },
        with(
          local!dataForCurrentPage: todatasubset(
            local!sampleData,
            local!pagingInfo
          ).data,
          a!gridField(
            totalCount: length(
              local!sampleData
            ),
            columns: {
              a!gridTextColumn(
                label: "Name",
                field: "label",
                data: local!dataForCurrentPage.label,
                alignment: "LEFT"
              ),
              a!gridTextColumn(
                label: "Open Task",
                data: {
                  "Expense Approval",
                  "Expense Approval",
                  "Timesheet Approval",
                  "Timesheet Approval"
                },
                links: {
                  a!processTaskLink(
                    task: 1382
                  ),
                  a!processTaskLink(
                    task: 1377
                  ),
                  a!processTaskLink(
                    task: 536870918
                  ),
                  a!processTaskLink(
                    task: 268436948
                  )
                },
                alignment: "LEFT"
              )
            },
            value: local!pagingInfo,
            saveInto: local!pagingInfo
          )
        )
      )

Children
No Data