Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6435308

JTable Resize Cursor not set when using JDialog

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 5.0
    • client-libs

      FULL PRODUCT VERSION :
      java version "1.5.0_04"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_04-b05)
      Java HotSpot(TM) Client VM (build 1.5.0_04-b05, mixed mode, sharing)

      ADDITIONAL OS VERSION INFORMATION :
      SuSE 10.0

      A DESCRIPTION OF THE PROBLEM :
      A correctly working JTable that allows column resizing should show a resize cursor when the mouse is in between two columns.

      However, this is not the case when the JTable is inside a JDialog.

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import javax.swing.*;
      import javax.swing.table.*;

      public class BadCursor {

        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createJDialog();
                    createJFrame();
                }
            });
        }

        public static void createJDialog() {
              // This will create a Dialog with a JTable that does not correctly show
              // a resize cursor.
              JTable table = new JTable(new DefaultTableModel(new String[] {"a", "b"},
                  10));
              JFrame parent = new JFrame();
              JDialog dialog = new JDialog(parent, "No Resize Cursor");
              JScrollPane scrollPane = new JScrollPane(table);
              dialog.getContentPane().add(scrollPane);
              dialog.pack();
              dialog.setVisible(true);
        }

        public static void createJFrame() {
              // This will create a Dialog with a JTable that correctly shows
              // a resize cursor.
              JTable table = new JTable(new DefaultTableModel(new String[] {"a", "b"},
                  10));
              JFrame frame = new JFrame("Resize Cursor");
              JScrollPane scrollPane = new JScrollPane(table);
              frame.getContentPane().add(scrollPane);
              frame.pack();
              frame.setVisible(true);
        }
      }

      ---------- END SOURCE ----------

            shickeysunw Shannon Hickey (Inactive)
            ndcosta Nelson Dcosta (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: