I am using Matise Pale tool for Draging jtable.
now i want to insert a check box & text box in this table and also insert data insert data into it from dbtable.
please help it is urgent.
I am using Matise Pale tool for Draging jtable.
now i want to insert a check box & text box in this table and also insert data insert data into it from dbtable.
please help it is urgent.
Swing's JTable is not an "out of the box" solution. Instead, it and its related components are designed to let you create your own, customized table. Look at Sun's Java Tutorial to see how it works. Generally, I suggest creating your own TableModel directly from the interface. To hold the data, create MyDataRow class and implement a list your TableModel.