TO display link in a Grid

Hello,

I am able to display link in a paging grid, But I am looking to implement the link in the pattern below:
Data 1 Data 2
Count: 3 Count: 4

Where I want to implement link only 3 and 4 and not for Count:, In current scenario it is being displayed link for complete Count: 3 and Count: 4.

Let me know if there is way to implement above scenario.

Regards,
Sandeep.

OriginalPostID-246413

  Discussion posts and replies are publicly visible

Parents
  • a!sectionLayout(
    firstColumnContents:{a!gridLayout(
    headerCells:{
    a!gridLayoutHeaderCell(label:"Label 1"),
    a!gridLayoutHeaderCell(label:"Label 2")
    },
    rows:{
    a!gridRowLayout(
    contents:{
    a!richTextDisplayField(
    value:{a!richTextItem(text:"Count"),a!richTextItem(text:"3",link:a!dynamicLink(value:"abc"))}
    ),
    a!richTextDisplayField(
    value:{a!richTextItem(text:"Count"),a!richTextItem(text:"4",link:a!dynamicLink(value:"abc"))}
    )
    }
    )
    }
    )}
    )
Reply
  • a!sectionLayout(
    firstColumnContents:{a!gridLayout(
    headerCells:{
    a!gridLayoutHeaderCell(label:"Label 1"),
    a!gridLayoutHeaderCell(label:"Label 2")
    },
    rows:{
    a!gridRowLayout(
    contents:{
    a!richTextDisplayField(
    value:{a!richTextItem(text:"Count"),a!richTextItem(text:"3",link:a!dynamicLink(value:"abc"))}
    ),
    a!richTextDisplayField(
    value:{a!richTextItem(text:"Count"),a!richTextItem(text:"4",link:a!dynamicLink(value:"abc"))}
    )
    }
    )
    }
    )}
    )
Children
No Data