Avatar of hello_kets
hello_kets

asked on 

How to show resize indicator when user want to resize Jtable header.

Hi,
  I am using the swing to draw Jtable. But i am not able to get the resize poniter indicator when user put the mouse between edges of the two column header. I want to show a pointer so that user can understand that he can resize the column size.

regards

Ketan
Java

Avatar of undefined
Last Comment
Mayank S
Avatar of mmuruganandam
mmuruganandam
Flag of United States of America image

Pass your TableColumn to the JTableHeader,

setResizingColumn(TableColumn aColumn)  all the columns that you need to resize.

This way, java by default takes care of showing that cursor.


Regards,
Muruga
Avatar of hello_kets
hello_kets

ASKER

Please can you send the code for this.
thanx in advance.

ketan
Avatar of hello_kets
hello_kets

ASKER

I used
*****************************
JTableHeader header = table.getTableHeader();
header.setResizingAllowed(true);

for(int i = 0; i < table.getColumnCount() ; i++)
{
     header.setResizingColumn(table.getColumnModel().getColumn(i));
}

******************************
but still it is not working.

Ketan
Avatar of Mayank S
Mayank S
Flag of India image

As far as I know, you don't need to set it at all, because it is resizable by default. I guess you must be setting it to non-resizable or something. Have you set your JTable to enabled ( false ) or something like that? Can you post your updated code?
Avatar of Mayank S
Mayank S
Flag of India image

I tested some sample code for a JTable.... even if you set table.setEnabled ( false ), the columns are still resizable.
Avatar of Mayank S
Mayank S
Flag of India image

Have you used table.setAutoResizeMode () anywhere?
Avatar of Mayank S
Mayank S
Flag of India image

Try: table.setAutoResizeMode ( JTable.AUTO_RESIZE_ALL_COLUMNS ) ;

(I hope you are not doing table.setAutoResizeMode ( JTable.AUTO_RESIZE_OFF ) ; anywhere).
Avatar of Mayank S
Mayank S
Flag of India image

See the JTable examples from the Java developer's almanac:

http://www.javaalmanac.com/cgi-bin/search/find.pl?words=JTable
Avatar of hello_kets
hello_kets

ASKER

Hi all,
  I think our subject is diverting. I am able to resize the columns but i want so show '<-->' between header edge. I have set the parameters like.

********
table.setAutoResizeMode(JTable.AUTO_RESIZE_ALL_COLUMNS);
table.setAutoCreateColumnsFromModel(false);
table.getTableHeader().setReorderingAllowed(false);
JTableHeader header = table.getTableHeader();
header.setResizingAllowed(true);
for(int i = 0; i < table.getColumnCount() ; i++)
{
     header.setResizingColumn(table.getColumnModel().getColumn(i));
}
********************************

Ketan

Avatar of Mayank S
Mayank S
Flag of India image

I guess that if the columns are resizable then the user will be able to see the '<-->' between the header-edges of the columns. Try this sample code and tell me if it shows it to you the way you want:

import javax.swing.* ;
import java.awt.* ;
import java.awt.event.* ;

class JTableTest extends JPanel
{
      JTableTest () // constructor ()
      {
            JPanel jTablePanel = new JPanel ( new BorderLayout () ) ;
            String columnNames[] = {"Title","Author","Issued","Shelf No."};
            Object objArray[][] = new Object[1][4] ;

            objArray[0][0] = "A" ;
            objArray[0][1] = "B" ;
            objArray[0][2] = "C" ;
            objArray[0][3] = "D" ;

            final JTable jTabBook = new JTable ( objArray, columnNames ) ;
            jTabBook.setEnabled ( false ) ;
            jTabBook.setSelectionMode ( ListSelectionModel.SINGLE_SELECTION ) ;
            // jTabBook.setEnabled ( false ) ;
            JScrollPane scrollPane = new JScrollPane ( jTabBook ) ;
            jTablePanel.add ( scrollPane ) ;
            jTablePanel.setBackground ( Color.white ) ;
            add ( jTablePanel ) ;
            // show () ;

      } // end of constructor ()

      public static void main(String[] args)
      {
            JFrame jfMyFrame = new JFrame () ;
            jfMyFrame.getContentPane ().add ( new JTableTest () ) ;
            jfMyFrame.setSize ( 800, 600 ) ;
            jfMyFrame.show () ;

      } // end of main ()

} // class definition over
Avatar of hello_kets
hello_kets

ASKER

yes your code is working fine...
I have removed all the setting of the jtable but even then it is not showing the '<-->'.
Avatar of Mayank S
Mayank S
Flag of India image

Post your code.
Avatar of hello_kets
hello_kets

ASKER

Hi sorry...
i Got the answer. Actually i was setting

JScrollPane scrollPane = new JScrollPane ( jtesttable ) ;
jTablePanel.add ( scrollPane ) ;
jTablePanel.setEnabled(false);   /// Here was the problem.

when i removed the line 'jTablePanel.setEnabled(false);' its astred working.

thanx for the help.

Regards

Ketan
Avatar of Mayank S
Mayank S
Flag of India image

That is why I posted that code ;-) so that you can see where you went wrong.
Avatar of Mayank S
Mayank S
Flag of India image

That is also why I asked: >> Have you set your JTable to enabled ( false ) or something like that?

Because setting your table's containing Panel to disabled would automatically mean that all things inside the panel (including the JTable) would be disabled.
ASKER CERTIFIED SOLUTION
Avatar of Mayank S
Mayank S
Flag of India image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
Avatar of Mayank S
Mayank S
Flag of India image

Thanks, AI.
Java
Java

Java is a platform-independent, object-oriented programming language and run-time environment, designed to have as few implementation dependencies as possible such that developers can write one set of code across all platforms using libraries. Most devices will not run Java natively, and require a run-time component to be installed in order to execute a Java program.

102K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo