Questions tagged [seesaw]

Seesaw UI for Clojure

Seesaw is a Swing-based library/DSL for constructing user interfaces in the Clojure programming language.

63 questions
0
votes
2 answers

In clojure how to refresh the table data

I have a table created using seesaw.swingx and i want to refresh the data in the rows of the table (or even clearing the entire table and giving new data to it will do). How do i achieve this, I know i might have to use table/table-model, but how do…
Harsh Shah
  • 368
  • 3
  • 17
0
votes
0 answers

How to fetch selected row from seesaw/table

I have created seesaw/table as below (def table (seesaw/table :model [:columns [:uid :name :price :qty] :rows [{:uid "1" :name "book1" :price "20" :qty "2"} {:uid 2 :name…
Robin
  • 167
  • 1
  • 2
  • 8
0
votes
1 answer

Adding button groups using seesaw

I am creating a GUI using seesaw for the first time and I am stuck on how to add buttons to button groups and display them(buttons) on the same frame. This is what I have so far. (def b (button :text "Start a new Project")) (def c (button :text…
mwaks
  • 379
  • 2
  • 4
  • 10
1 2 3 4
5