Hey!
I have a custom:flex-table-card in the Home Assistant dashboard created as
type: custom:flex-table-card
title: Prices
entities:
include:
- sensor.nordpool
clickable: true
columns:
- data: prices
modify: x.start
name: Start
- data: prices
modify: x.end
name: Stop
- data: prices
modify: x.value
name: Price
The table works nicely.
I would now want to have a column called Switch that would include kind of an on/off button for each row so that I could manually set the value of the switch or input_boolean to on/off in each row.
Does anyone know if this is possible and how it could be implemented?