Dynamic jcombobox items inside jtable

前端 未结 3 1698
你的背包
你的背包 2021-01-17 03:43

I am trying to create a Jtable with two combobox in each row. I have checked for tutorials on that and found that I can add static data inside combobox. But how come I can h

3条回答
  •  孤街浪徒
    2021-01-17 04:07

    After removeAllItems() call, add items in combobox as

      combobox.addItem("one");
      combobox.addItem("two");
    

提交回复
热议问题