Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 701925
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T03:39:50+00:00 2026-05-14T03:39:50+00:00

When I set the GridLayout to the JPanel and then add something, it is

  • 0

When I set the GridLayout to the JPanel and then add something, it is added subsequently in the “text order” (from left to right, from top to bottom). But I want to add an element to a specific cell (in the i-th row in the j-th column). Is it possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T03:39:51+00:00Added an answer on May 14, 2026 at 3:39 am

    No, you can’t add components at a specific cell. What you can do is add empty JPanel objects and hold on to references to them in an array, then add components to them in any order you want.

    Something like:

    int i = 3;
    int j = 4;
    JPanel[][] panelHolder = new JPanel[i][j];    
    setLayout(new GridLayout(i,j));
    
    for(int m = 0; m < i; m++) {
       for(int n = 0; n < j; n++) {
          panelHolder[m][n] = new JPanel();
          add(panelHolder[m][n]);
       }
    }
    

    Then later, you can add directly to one of the JPanel objects:

    panelHolder[2][3].add(new JButton("Foo"));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I set my JPanel to GridLayout (6,6), with dimension (600,600) Each cell of the
How can one set GridLayout known from Java or Wpf in WinForms control? Is
I have a JPanel with a GridLayout(1,0) set to a JFrame Borderlayout.SOUTH , there
I'm trying to set the size of a gridlayout jpanel. Here is the code:
Set rs = conn.Execute(Statement) //rs has 6 fields I want to add the current
My Code: public MyConstructor() { view = new JPanel(new GridLayout(3, 1)); header = new
I tried to set JTextArea to JPanel as JPanel panel=new JPanel(new BorderLayout()); JTextArea ta=new
I have a javax.swing.JPanel called calcResPanel (using a java.awt.GridLayout with 1 column and indefinite
I have a series of components underneath each other in a JPanel set as
This is a continuation from this post I have a set of random sized

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.