Added custom HTML templates for each cell. You can embed the same or different FCC cells using <fcc row="x" col="y" /> while preserving actions, dynamic rules, and custom CSS. This allows you to place more than one element in a single cell.
Fixed row/col recalculation for <fcc> tags (and sort column numbers) when rows/columns are reordered or deleted in the visual editor.
Fixed ghost clicks on mobile after navigate/url actions by suppressing the first synthetic click for a short window.
Global templates were added a long time ago, but if we wanted to rebuild just one cell, we had to rebuild the entire table from scratch in the template.
With cell templates, we can rebuild any cell and the rest will render unchanged.
Sure, using FCC, you can build a card that looks exactly how you want. Read the ‘Templates’ section in the README. If you don’t know HTML, tell AI Chat what card you’re using, what your entity names are, and what you want to build. This shouldn’t be a complicated task for AI Chat.
I have another challenge and Copilot says it’s not possible without a template, which I’d like to avoid. Is it possible to have a dropdown showing different entries than the one it reads from the options. The idea is to use something like:
I’d probably go with HA templates (they’re not the same as FCC templates). Check out this link: Template - Home Assistant
You can easily create a new entity that will have values based on the original entity.
Or even simpler, if you just need a list of specific values, you can create an input select: Input select - Home Assistant
Actually I saw that very interstingly, the state returns the raw state and there is something called the translated state, which is what I should use in this case to show in the dropdown… In jinja2 this is how you get them:
Raw state = {{ states["select.your_entity_id"].state }}
Translated state = {{ state_translated("select.your_entity_id") }}
For example:
Raw state = LaundryCare.Washer.EnumType.Temperature.GC40
Translated state = 40°C
Is it possible to get these translated states in Flex Cells Card?
Many thanks!
So I bought my first camera. I chose a cheap RTSP camera because, from what I’d read, they are popular. Version 0.25.0 is already available as a pre-release.
When I added state translations/formatting in version 0.22.0, I missed select lists and dynamic rules (entity overrides). This was fixed with version 0.25.0-beta.2 (pre-release).
If you want to use pre-release go to HACS → FCC → … (three dots, upper right corner) → Redownload → select version v0.25.0-beta.2.