<@U0HUJ25V1> All the column() functions should tak...
# tornadofx
e
@thomasnield All the column() functions should take an op as the last argument so we can avoid the need for
apply
all together. I'm also quite sure that the best approach is to write
column("Name") { value { it.value.name } }
instead of
column("Name") { it.value.name }
- even though it looks corny as a one-liner, and you'd some times need to write just a little more, this is the most flexible/consistent approach.
👍 1