This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
Any idea, whats wrong with my code? The items are not shown as expected...
{:fx/type :table-view
:columns [{:fx/type :table-column
:text "Hello"
:sortable false}
{:fx/type :table-column
:text "World"}]
:items [["How" "are"]
["ya" "?"]]}
{:fx/type :table-view
:columns [{:fx/type :table-column
:cell-value-factory first
:text "Hello"
:sortable false}
{:fx/type :table-column
:cell-value-factory second
:text "World"}]
:items [["How" "are"]
["ya" "?"]]}
👍 2