link:*
Just like on is the input channel for event actions, so too is
the link:* attribute the input channel for reference actions.
Reference actions can be used with the following pattern:
link:<attributeName>="hello"
This reads like the following:
- assign the
helloaction of typereferenceas the input for the<attributeName>attribute
link:<name> links an attribute named <name> to a
reference.
Both ref:* and link:* can specify an attribute name
independently, because they do not always have to match.
Select color¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | |
Pick a value in the dropdown and see the color of the div change.
Resolution-optimized server response¶
Imagine that you have a database with millions of data points that you would like to display in a line graph.
That already sounds challenging, doesn't it?
This is one of those use cases where reference actions can really come in handy. It does not have to be hard at all.
You don't have to pay in complexity, visual fidelity, accuracy, or performance. 🤯
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | |