Hi,
I have craeted JTable in Swings.I would like to make the contents in that JTable as "hyper link". I have generated JTable as follows.
String fields[] = {"col1", "col2"};
String data[][] ={
{"row1col1","ro w1col2"},
{"row2col1","ro w2col2"},
{"row3col1","ro w3col2"}
}
JTable tab = new JTable(data,fie lds);
I want all the values in the JTable as "Hyperlink" text..
How is this possible?
-Thanks & Regards,
Hamsa
I have craeted JTable in Swings.I would like to make the contents in that JTable as "hyper link". I have generated JTable as follows.
String fields[] = {"col1", "col2"};
String data[][] ={
{"row1col1","ro w1col2"},
{"row2col1","ro w2col2"},
{"row3col1","ro w3col2"}
}
JTable tab = new JTable(data,fie lds);
I want all the values in the JTable as "Hyperlink" text..
How is this possible?
-Thanks & Regards,
Hamsa
Comment