cljfx 2023-06-10

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" "?"]]}

Ah, I see, thanks!

I think I need to do something with the other :table-... 's but idk

{: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" "?"]]}

👍 1