@flyboarder Ok thanks! Ill check for it.
`(defn event-target-node-val [evt] (-> evt .-target .-value))` This is how I resolved the issue.
1👍Aren't there some places where @
in front of cell is necessary?
Like when passing attribute value from parent to child, you have to deref it.
there are exceptions, for sure
one example is when you're implementing a :click
handler
I use
(defn event-target-node-val [evt]
(-> evt .-target .-value))
for :click
handler to get value of event.
a click handler is a function that gets run at the point in time when you click, and it's separate from the hoplon workflow of input and formula cells, so if your click handler needs to use the values of cells, you have to deref those cells
1👍