<@U1AMZJS4X> The issue is that the cell type is "g...
# tornadofx
e
@cypher121 The issue is that the cell type is "given" using a function inside the function (
value()
), so the compiler cannot infer that type no matter what. The column function needs two type arguments: The TableView type and the column type. If you want to specify the column type you also have to specify the table view type, so you end up with
column<MyObject, Int>("Level") ...
.