Appearance
io.select.table
Represents a select.table component. This component renders a list of checkboxes
Usage
ts
const { value } = await io.select.table("Customer Issues", {
data: [
{
title: "Customer is unable to access their profile page",
ticket: 123456,
},
{
title: "Customer is requesting access to new feature",
ticket: 123457,
},
{
title: "Can't access account",
ticket: 123458,
},
{
title: "Actions are not showing in history",
ticket: 123459,
},
],
})
python
value = await io.select.table(
"Customer Issues",
data=[
{
"title": "Customer is unable to access their profile page",
"ticket": 123456,
},
{
"title": "Customer is requesting access to new feature",
"ticket": 123457,
},
{
"title": "Can't access account",
"ticket": 123458,
},
{
"title": "Actions are not showing in history",
"ticket": 123459,
},
],
)