Hello.
It's possible to hide some column names in a JTable.
Let's say i ahev this:
String[] columnNames = {
"Name",
"Surname",
"Adress",
"Email"
};
Object values[][]=new Object [100][4];
JTable table = new Jtable(values, columnNames);
but in the GUI i just wanna see the columns Name, Surname and Adress.
Is this possible and how can i achive this if it is possible?
Thank you.
noe Rocha.