Load Row
{
id: 1,
name: "Bobbie Bogan II",
first_name: "Bobbie"
}Filtering
// id = 23
{{ui.table.selectedRow.data.id}}
Data transformation
Last updated
Was this helpful?
{
id: 1,
name: "Bobbie Bogan II",
first_name: "Bobbie"
}// id = 23
{{ui.table.selectedRow.data.id}}
Last updated
Was this helpful?
Was this helpful?
SELECT * FROM users WHERE id = 23 LIMIT 1;return {
...{{data}},
name: {{data}}.name.toUpperCase(),
};return {
...{{data}},
created_at: new Date(),
};action