Hello - I’m new to DASH. My dropdown when selected is dynamically creating a ListGroup of ListGroupItems.
- After selecting the dropdown value “Group A” the following code is generated.
dbc.ListGroup([
dbc.ListGroupItem(“Beneficiary Charity Organization”, href=“https://example.com:1008/ibm/iis/igc-rest/v1/assets/6662c0f”, target=“_blank”),
dbc.ListGroupItem(“Member Donation”, href=“https://example.com:1008/ibm/iis/igc-rest/v1/assets/6662c0f2”, target=“_blank”),
dbc.ListGroupItem(“Matching Gift Contribution”, href=“https://example.com:1008/ibm/iis/igc-rest/v1/assets/6662c0f2”, target=“_blank”)])
How do I get this code to render within the layout?
… It currently just shows as a string.
Thank you
SP123