Multiple Dynamic Links in a single grid field

Hello,

We are working on an application that is reading json and placing individual elements in separate grid fields once the json is in a datasubset. In one of these grid fields, we have multiple bits of data returned displayed in a single row, and would like each of those bits of data rendered dynamically as separate links on distinct lines within the grid field. Is this possible?

 

So, for instance

Column Header 1 Column Header 2
Data 1

Data 1a

Data 1b

Data 1c

Data 2

Data 2a

Data 2b

Data 2c

Data 2d

 

Thanks,

Dylan

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    You will probably want to make your Link column a richTextDisplayField (in an Editable Grid). Using this field, you will have the freedom to iterate through any number of links per row of data, and show each link on its own line easily, and with nice-looking formatting. I don't suggest using linkField (really for anything anymore) as it's not nearly flexible enough; in this case I don't think you would be able to display multiple different links within one grid cell.

Reply
  • 0
    Certified Lead Developer

    You will probably want to make your Link column a richTextDisplayField (in an Editable Grid). Using this field, you will have the freedom to iterate through any number of links per row of data, and show each link on its own line easily, and with nice-looking formatting. I don't suggest using linkField (really for anything anymore) as it's not nearly flexible enough; in this case I don't think you would be able to display multiple different links within one grid cell.

Children
No Data