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

First field does not receive focus upon starting JFrames

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.2.2
    • client-libs



      Name: vi73552 Date: 06/30/99


      The problem is that upon starting a JFrame, the first field does
      not receive focus. Only by pressing tab (from an unknown
      component that is not in the tabbing sequence) does the first
      field get focus. Is this correct? At present the workaround
      has to be provided on every JFrame, but it would be good to have
      it as default behaviour.

      The following code reproduces the problem:

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

      public class PanelFocus extends JFrame{
       public PanelFocus(){
        super( "First field does not get focus" );
        setSize( 400, 400 );
        Container cp = getContentPane();
        cp.setLayout( new FlowLayout() );
        cp.add( new JTextField( "Should have focus" ) );
        cp.add( new JTextField( 5 ) );
        setVisible( true );
       }

       public static void main( String[] args ){
        new PanelFocus();
       }
      }

      The problem occurred on both NT and OS/2. On NT, 'version' is
      JDK1.1.7A, and 'fullversion' is JDK1.1.7U.
      (Review ID: 85012)
      ======================================================================

            hgajewsksunw Hania Gajewska (Inactive)
            vasya Vassili Igouchkine (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: