We are currently performing maintenance on Appian Community. As a result, discussions posts and replies are temporarily unavailable. We appreciate your patience.

How to hard code record links in a pie chart?

Hello. I am currently using 7.3 and would like to create links in my grids that access particular records. The documentation discusses how to hard code record links in a pie chart, but I have yet to find how to create dynamic record links in a grid, except for task links, which are linked to portal reports. Can somebody point me in the right direction?...

OriginalPostID-89861

OriginalPostID-89861

  Discussion posts and replies are publicly visible

Parents
  • Yes, for example my data for titles is local!datasubset.data.title, but my data for ID #s is local!datasubset.data.id and I cannot get it to return any ID#s into my grid.

    My record data is below and it seems to return the ID when I look at the records.
    a!dashboardLayout(
    firstColumnContents: {
    a!textField(
    label: "Title",
    readOnly: true,
    value: rf!title
    ),
    a!textField(
    label: "id",
    readOnly: true,
    value: rp!id
    ),
    a!textField(
    label: "Description",
    readOnly: true,
    value: rf!description
    ),
    a!textField(
    label: "Phase",
    readOnly: true,
    value: rf!phase
    ),
    a!textField(
    label: "Theme",
    readOnly: true,
    value: rf!theme
    ),
    a!textField(
    label: "Request Type",
    readOnly: true,
    value: rf!requestType
    ),
    a!textField(
    label: "Submitted",
    readOnly: true,
    value: rf!submitDate
    ),
    a!textField(
    label: "Actual Launch Date",
    readOnly: true,
    value: rf!actualLaunchDate
    ),
    a!textField(
    label: "Category",
    readOnly: true,
    value: rf!category
    ),
    a!textField(
    label: "Product",
    readOnly: true,
    value: rf!site
    ),
    a!textField(
    label: "Priority",
    readOnly: true,
    value: rf!catPriority
    ),
    a!textField(
    label: "Organizational Priority",
    readOnly: true,
    value: rf!strategicClass
    )
    }
    )
Reply
  • Yes, for example my data for titles is local!datasubset.data.title, but my data for ID #s is local!datasubset.data.id and I cannot get it to return any ID#s into my grid.

    My record data is below and it seems to return the ID when I look at the records.
    a!dashboardLayout(
    firstColumnContents: {
    a!textField(
    label: "Title",
    readOnly: true,
    value: rf!title
    ),
    a!textField(
    label: "id",
    readOnly: true,
    value: rp!id
    ),
    a!textField(
    label: "Description",
    readOnly: true,
    value: rf!description
    ),
    a!textField(
    label: "Phase",
    readOnly: true,
    value: rf!phase
    ),
    a!textField(
    label: "Theme",
    readOnly: true,
    value: rf!theme
    ),
    a!textField(
    label: "Request Type",
    readOnly: true,
    value: rf!requestType
    ),
    a!textField(
    label: "Submitted",
    readOnly: true,
    value: rf!submitDate
    ),
    a!textField(
    label: "Actual Launch Date",
    readOnly: true,
    value: rf!actualLaunchDate
    ),
    a!textField(
    label: "Category",
    readOnly: true,
    value: rf!category
    ),
    a!textField(
    label: "Product",
    readOnly: true,
    value: rf!site
    ),
    a!textField(
    label: "Priority",
    readOnly: true,
    value: rf!catPriority
    ),
    a!textField(
    label: "Organizational Priority",
    readOnly: true,
    value: rf!strategicClass
    )
    }
    )
Children
No Data