| Author |
Problem with Applet table
|
Pradeep Selvaraj
Greenhorn
Joined: Sep 29, 2003
Posts: 17
|
|
Hi there! I created a JAVA Applet that has a TABLE which lists records from the SQL database. The problem is that i wanted to select multiple rows from the table but i cudnt. Is there any way to select multiple rows and insert into the SQL table. Can i add check box in the Applet TABLE? Thanks in advance. Cheers, Pradeep.
|
 |
Gregg Bolinger
Ranch Hand
Joined: Jul 11, 2001
Posts: 15230
|
|
|
This questions would probably get better responses from people in the SWING / AWT / JFC Forum. So I will move it there.
|
 |
Joe Ess
Bartender
Joined: Oct 29, 2001
Posts: 8264
|
|
try <jtable>.getSelectionModel().setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION) or <jtable>.getSelectionModel().setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION) As for adding a checkbox, that question must get asked three times a week in this forum. Do a search or check out this page
|
"blabbing like a narcissistic fool with a superiority complex" ~ N.A.
[How To Ask Questions On JavaRanch]
|
 |
Pradeep Selvaraj
Greenhorn
Joined: Sep 29, 2003
Posts: 17
|
|
Hi Joe, Thanks a lot! The examples were really gr8.Thanks again for ur time. Cheers, Pradeep
|
 |
 |
|
|
subject: Problem with Applet table
|
|
|