ipydatagrid
¶A renderer which allows for rendering text-based clickable links as cells in your DataGrid. It takes two parameters:
url
: A Vega Expression function which points to a full URL (with the http(s) prefix)urlName
: A Vega Expression function which points to a friendly URL display nameTo preserve default cell selections behaviour, a link can only be opened by clicking whilst holding the Ctrl
or Command
key pressed.
The HyperlinkRenderer
can be styled using all properties supported by the TextRenderer
!
import pandas as pd
import numpy as np
from ipydatagrid import VegaExpr, DataGrid, TextRenderer, HyperlinkRenderer
df = pd.DataFrame(
data={
"Name": ["NumFocus"],
"Link": [["https://numfocus.org/", "Better tools to build a better worlds."]],
}
)
link_renderer = HyperlinkRenderer(
url=VegaExpr("cell.value[0]"),
url_name=VegaExpr("cell.value[1]"),
background_color="moccasin",
text_color="blue",
font="bold 14px Arial, sans-serif",
)
grid = DataGrid(
df,
layout={"height": "120px"},
base_column_size=200,
renderers={"Link": link_renderer},
)
grid