St.data_editor - LinkColumn with different label and URL?

Summary

We want to display download links for files inside an st.data_editor (could also be a normal table).
The column config has a LinkColumn, however the text must be the complete link.
Is it possible (via raw html or some sort) to have something like (taking the example as a reference)

data_df = pd.DataFrame(
     {
         "apps": [
             '<a href="https://roadmap.streamlit.app">roadmap</a>',
             "https://extras.streamlit.app",
             "https://issues.streamlit.app",
             "https://30days.streamlit.app",
         ],
     }
 )

Additional information

Iā€™ve had a brief look at st-aggrid. Would that be an easier solution for this use case?

This can be done in Streamlit by using the ā€˜st.dataframeā€™ function rather than the ā€˜st.data_editorā€™ or a standard table. With the use of the ā€˜st.dataframeā€™ function, which supports rendering HTML content, you can show download links with various labels and URLs.

Here is an illustration of how to use ā€˜st.dataframeā€™ to display download links with various labels and URLs:

import pandas as pd
import streamlit as st

data_df = pd.DataFrame(
    {
        "apps": [
            '<a href="https://roadmap.streamlit.app">roadmap</a>',
            '<a href="https://extras.streamlit.app">extras</a>',
            '<a href="https://issues.streamlit.app">issues</a>',
            '<a href="https://30days.streamlit.app">30days</a>',
        ],
    }
)

st.dataframe(data_df, unsafe_allow_html=True)

The ā€˜unsafe_allow_html=Trueā€™ option is used in this example to permit the rendering of HTML content inside the ā€˜st.dataframeā€™ method. HTML anchor tags (ā€˜a>ā€™) with the proper ā€˜hrefā€™ attributes are present in the ā€˜appsā€™ column for each link.

If youā€™d rather use ā€œst-aggrid,ā€ you can also create a custom renderer to do the same thing. Hereā€™s an illustration:


import pandas as pd
import streamlit as st
import streamlit.components.v1 as components

data_df = pd.DataFrame(
    {
        "apps": [
            "roadmap",
            "extras",
            "issues",
            "30days",
        ],
        "urls": [
            "https://roadmap.streamlit.app",
            "https://extras.streamlit.app",
            "https://issues.streamlit.app",
            "https://30days.streamlit.app",
        ],
    }
)

renderer_code = """
function(params) {
  var link = document.createElement('a');
  link.setAttribute('href', params.value);
  link.setAttribute('target', '_blank');
  link.innerText = params.data.urls[params.rowIndex];
  return link;
}
"""

components.html(
    f"""
    <div id="ag-grid-container" style="height: 300px;"></div>
    <script>
        var gridOptions = {{
            columnDefs: [
                {{ field: 'apps', headerName: 'Apps', cellRenderer: 'linkRenderer' }},
            ],
            rowData: {data_df.to_json(orient='records')},
            components: {{
                linkRenderer: {renderer_code},
            }},
        }};
        new agGrid.Grid(document.querySelector('#ag-grid-container'), gridOptions);
    </script>
    """,
    height=400,
)

In this demonstration, we use JavaScript to build a custom cell renderer that generates an anchor tag (ā€˜a>ā€™) with the proper link and label. The labels are located in the DataFrameā€™s ā€œappsā€ column, while the URLs are located in the ā€œurlsā€ column. The labels will appear as clickable links in the produced grid.

Both strategies will produce the desired outcome, so you can pick the one that best meets your preferences and needs.

st.dataframe has no argument unsafe_allow_html, your LLM is probably hallucinating on this one :frowning:


In a nutshell, this is currently (v. 1.23) not possible using LinkColumn (check this other thread How to display a clickable link pandas dataframe - #6 by lukasmasuch). But feel free to upvote this feature request to have that in the future.

2 Likes

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.