Tagged Questions
2
votes
3answers
45 views
Adding a JPanel to a JPanel
I have attached my code below, a screen shot of my program, and a drawing of what I want the tab to look like. I need my JPanel textPanel to appear below the JButtons on the tab LLP. I have tried to ...
0
votes
3answers
52 views
When does a JTabbedPane component get its size?
I need to know the size of a JPanel when I add it to a JTabbedPane to compute other values. If I call the add(Component) method, when does the Component get its size?
For example,
JTabbedPane ...
0
votes
1answer
48 views
Refresh JPanel content on tab switch
I'm writing a simple UI just to get the hang of things. I have a tabbed window with two tabs, one has a button that counts up an integer, the other has a text field showing the content of said ...
0
votes
1answer
97 views
JScrollPane inside JPanel inside a JTabbedPane is not scrolling
I have this JPanel called CatalogPane, which is of size 800 by 600, which is inside a JTabbedPane inside a JFrame called BookFrame. So inside the CatalogPane, I created a JPanel called bookDisplay ...
0
votes
1answer
40 views
Canvas repaint should be called by itself
I have an application with jTabbedPane. There are two tab (JPanel) in jTabbedPane. First tab includes canvas and second one includes simple JLabel. Button draws rectangle into canvas.
Every thing is ...
0
votes
2answers
293 views
Java Swing: Add tabs into JPanels
I have a series of tabs, but I want to then add further tabs within the panel it displays, as if to replicate a ribbon menu. I roughly know what needs to be done (changing the return type of the ...
0
votes
1answer
172 views
JTabbedPane not showing other tabs added
I have been looking around about JTabbedPane's and can't seem to find any solution.
I am using GridBagLayout as the manager as I am more comfortable with this (I am new to Java programming).
I have ...
2
votes
4answers
243 views
JTabbedPane in JPanel?
I have a simple problem when I want to add tabs in my jpanel. The alignment of the tabs get horizontal instead of vertical, wich looks like crap =/.
It looks like this:
If I discard the panel ...
-2
votes
2answers
113 views
Adding Jtable to Tab in java
I am developing an java gui. It has TabedPane. I have added panel to tab. How to add jtable to panel which is in tab2;
0
votes
1answer
82 views
redraw jlabel in loop defined jpanels and decleration of jpanels in loop
So for fun I've been working on developing this simple stock-chart GUI, which grabs charts from YahooFinance and displays them into a tabbed-Jpanel. I've been able to get the tabs to populate with ...
1
vote
0answers
172 views
Java: Keybindings get consumed by other components
I'm working on a GUI.
The Gui is constructed as follows: A JFrame containining a (custom) leftPanel and rightPanel. RightPanel is an extension of a tabbedpane and contains as one of the tabs, the ...
1
vote
1answer
109 views
how is it possible to design a java based user interface using custom tabbed panes and provide an broswer like design?
I had started working on a java based tool that my friend has developed. Now we are working on it together. He has used custom made jpanels and used them in jtabed pane like fashion. Its something ...
2
votes
1answer
144 views
adding new jpanel with default components in swing
can any one tell me how to add a panel in a jtabbedPane whenever i am clicking on a "add" button.Its like google chrome new tab.But the thing is ,the generated panel must contains some default ...
1
vote
0answers
122 views
Nested JTabbedPane formatting issues
I have a JTabbedPane that looks like the image below:
The table with horizontal tabs is just a simple JTabbedPane, the vertical tabs are JTabbedPanes with tab placement set to JTabbedPane.LEFT. ...
0
votes
0answers
169 views
JFreeChart's barChart
I have created a dataset (of type DefaultCategoryDataSet) for creating a bar chart (say barChart) with the JFreeChart api: ChartFactory.createBarChart(...). Then I created a ChartPanel - CP, and added ...
2
votes
1answer
269 views
Assigning a different (new) JPanel to a JTabbedPane at run time
I have a JTabbedPane (say myTabPane) having one tab (lets take only one tab for clarity sake). While creating the JTabbedPane, I added a JPanel (say panel_A) to this tab. I have a button on this ...
2
votes
2answers
251 views
Content of JTabbedPane shifting after switching back
While working on a school project, due this saturday, I encountered the most annoying bug I've ever encountered yet. I can't seem to find a solution anywhere on the World Wide Web. Even my good old ...
1
vote
1answer
110 views
Unable to refresh JTabbedPane
I am using JTabbedPane with JPanel to display JTable on one tab and text, dropdown and jbutton on other tab.
First time it is working fine but if i minimize or switch screen to other application and ...
3
votes
1answer
162 views
After losing the focus on the JPanel screen in swing, screen don't show the content
I am using JTabbedPane with JPanel to display JTable on one tab and text, dropdown and jbutton on other tab.
First time it is working fine but if i minimize or switch screen to other application and ...
0
votes
1answer
215 views
JTabbedPane perform action above and below
I want to put JTabbedPane in the middle,and clicking any tab I want to change will reflect in both above and below panel of tabbedpane.
I tried it but it works only on the below panel.
How to ...
1
vote
1answer
458 views
Jtabbedpane how to set one tab enable to false
I have an application using JtabbedPane. Each tab is a JPanel. I wrote a function that should set certain tabs enabled to false in certain cases. Here is the code but I don't know why it doesn't work. ...
1
vote
1answer
1k views
Setting Dimensions Of JPanel on JTabbedPane in JInternalFrame in Java
Users of my software need to be able to click on different tabs to see different types of data representations. However, the code I am including below does not show the requested data panel when the ...
1
vote
1answer
431 views
Displaying JPanels plus its components in a tab within a JFrame using each tab as a seperate class
Please I need some help. I am trying to create a JFrame to contain Tabs, and each tab will show one panel. Each panel contains buttons and Textfields. The panels are should show a separate class on ...
2
votes
1answer
144 views
accessing data from a different Tab in a TabbedPane - Java
i have a JTabbedPane with several tabs, each of them is a class that extends JPanel, and contains a layout (textfields and labels for example). i been trying to reach the data from various tabs, but i ...
1
vote
0answers
155 views
Swing issue, drawing on a JTabbedPane
i'm having hard time trying to understand and solve a problem while drawing on a JPanel within a JTabbedPane
Basically i have this small app that draws stats graphics, its a simple JFrame with a ...
1
vote
1answer
313 views
Open another existing panel when user click button
I have created a java application which has a JTabbedPane that contains three JPanels. In my first panel I have a button. When the user clicks the button, it should open/show the second panel. Can ...
1
vote
3answers
397 views
When JPanel changes, elements of the old JPanel are left behind
I'm using a JTabbedPane, and on each tab there's a panel, which changes when the user does things like click buttons. The problem I'm getting is that elements from the previous panel get left behind. ...
0
votes
2answers
486 views
JTabbedPane containing panels
I have a JFrame that contains a JTabbedPane. I have added panels to the JTabbedPane but how do I make the panels to show when I click on a tab?
2
votes
1answer
746 views
How do I tell if the tab that I have open is the active tab in java?
I have a panel inside a jtabbed pane that I only want to refresh if the tab is visible. I tried, isShowing(), isDisplayable() and isVisible() and none of them seem to work as they check whether or not ...
0
votes
1answer
1k views
How can I refresh a JPanel in a JTabbedPane only if that tab is the one that is visible?
I have a pane that I need to rebuild the contents of and then swap it with the current panel, but only if it's the current tab.
2
votes
1answer
517 views
How does one make a component in the .CENTER of a Borderlayout occupy all center space and resize with the app?
My app/JFrame, using Borderlayout, has a toolbar at the top or north, a statusbar at the bottom or south and a JPanel.JTabbedPane.JScrollPane.JTable in the center. The JPanel is always a fixed size ...
0
votes
1answer
1k views
How to add tabs on JPanels
I have a JPanel with a table on it. On that same JPanel, I want to add another table but as a totally separate table. So I want two tabs button somewhere on the top to interchange between the two ...
0
votes
1answer
3k views
Java Swing JTabbedPane add JPanel to tab then modify it
I want to create a JTabbedPane, add a JPanel to everyone and then add something to the JPanel:
private void initTabbedPane(JTabbedPane tp)
{
...
2
votes
1answer
1k views
JTabbedPane tabs
Alright, so I have a JTabbedPane in an application and it has several panels. Is it possible to assign a JPopupMenu to the actual tabs themselves instead of the JPanel? If it is possible, how would I ...
1
vote
5answers
2k views
Java JTabbedPane questions
I'm using a JTabbedPane to hold each step in the wizard that I am building. Navigation between steps is doing using the Previous/Next buttons or by selecting a tab. The buttons decrement/increment ...
0
votes
1answer
415 views
JTabbedPane adding null components
Riddle me this: I have a JTabbedPane that has custom JPanels in it. When I try and access those JPanels, all I get back is null. I know that the panels have been added because on the UI I can see the ...

