The tag jscrollpane could be used for questions about two topics: 1) a Java Swing component named JScrollPane, 2) a jQuery plugin. Please verify the companion tags to clarify the context of the question.
2
votes
1answer
54 views
Where is my second JPanel going?
I'm trying to write a basic GUI application: it's just a scrollable window with text boxes and a few buttons. I've set up the JFrame and JScrollPane as follows:
public class MainFrame extends JFrame ...
-1
votes
2answers
38 views
Java GUI JScrollPane
I am a beginer at programing and i wanted to add a scroll panel to a JTextArea so i tried to research tutorials online. i followed the examples but its not working can someone plz tell me what i am ...
0
votes
2answers
31 views
Draggable component that is larger than JFrame (JScrollPane with invisble scrollbars on each side)
I have created a draggable JComponent in Java Swing and want to display it bigger than the JFrame it contains is (it's supposed to be a game map, movable by drag&drop). As i found didn't find a ...
0
votes
1answer
16 views
JTextAreas on JPanel inside JScrollPane does not show properly
I have created a demo by swing and I want to show full text in textarea. I want to add two textarea into a scroll bar to show all component within a scroll bar. So to do that, I create a panel and ...
0
votes
0answers
5 views
JScrollPane touch scrolling doesn't work in IE10/Surface
I've tried searching for this but it doesn't appear to be a known issue.
Finger scrolling doesn't appear to work in IE10, even on the main jscrollpane site: http://jscrollpane.kelvinluck.com/
Demos: ...
0
votes
1answer
27 views
Scrollbars in JScrollPane don't refresh
I have a JPanel in a JScrollPane. When JPanel changes (in my case, I draw an image inside), the scroll bars are not refreshing accordingly. I need to move them sligthly or resize the whole frame and ...
1
vote
1answer
42 views
JScrollPane containing a JPanel won't scroll
I have a JScrollPane which contains a JPanel which contains a collection of JPanels.
The collection size can be changed which is why I have it in a JScrollPane.
For some reason, no matter what I do, ...
1
vote
2answers
48 views
JTable does not fill JScrollPane which is added to JPanel using GridBagLayout
I have a JPanel with GridBagLayout. The panel contains 2 rows, first row has a JLabel and second row has a JScrollPane with JTable inside. The table does not fill 100% of the scrollpane. Even I resize ...
0
votes
0answers
29 views
JFreeChart: TimeLine with a scrolbar?
is there a way to put a timeserieschart in a jscrollpane. so if i have very much data - the chart looks squeezed together. so i just want to display e.g. 10 data points at the same time and want to ...
3
votes
1answer
36 views
My Swing GUI does not update. Why?
So, I am making a GUI in which the user has the ability to add or remove panels. To simulate that, I made a TimerTask which takes the name of the target JPanel and the parent which contains the ...
0
votes
0answers
4 views
jPlayer and jScrollPane not working together
I'm creating a streaming music service on my website using a fork of jPlayer called jPlaylister.
One thing this doesn't do is scroll the playlist to the currently playing song.
I would also like to ...
-1
votes
0answers
4 views
Grid bag layout won't show JScrollPane scollbar
New to asking here, but you've helped a lot in the past, anyways: After doing some research on why JScrollPanes don't usually work/get weird resizing with GridBagLayouts I've come to the concusion ...
0
votes
2answers
27 views
Scrolling on JList without the scrollBars
I have this JList with the custom code uses ActionMapAction. now I can use the custom up and down arrow buttom But I cant use the scroll of the mouse to scroll up and down on the jLIST.
How can I ...
0
votes
0answers
21 views
Make form scrollable with windowbuilder in Eclipse
I want to create a JForm project in Eclipse.I want the forms to be scrollable as they contain a lot of components. I insert JScrollPane and the controls, i choose "show bars always" but they do not ...
1
vote
1answer
17 views
Sizing srollpane on textarea & textfield
I am writing a code, where i have one textfield & another one is textarea with seperate scrollpane for each.
Now what i need is i want to set the size of scrollpane such that it should ...
0
votes
0answers
19 views
jScrollPane - bounce effect on reaching end of container
I was wondering, if anyone here added the functionality to jScrollPane that on reaching the end of the scrollbox an bounce-effect/animation is triggered. (Like on Google Chrome or iPhone/iPad).
Thank ...
0
votes
2answers
63 views
Add a JScrollPane to a JFrame
I have a question in relation to adding components to a Java frame.
I have a JPanel with two buttons and also a JScrollPane that has a JTable added to it. I am wanting to add both these to a JFrame.
...
0
votes
1answer
49 views
How to create a dynamically-sized JScrollPane w/ JPanel as the client?
In my code, the user can add new buttons to the main JPanel using the menu. The JPanel utilizes the FlowLayout form so that depending on the size of the window, the number or buttons on each row ...
0
votes
2answers
38 views
JScrollPane is not adding to my JList.
Im trying to add a Scroll bar to my JList. I want only 4 headings to be available on my JList at a time. When I add a JList and run my program, the JList disappears from the screen. Can someone help ...
1
vote
0answers
40 views
How to make JTexArea fit the window
I have created JTextArea inserted in JScrollPane inside JPanel which is inside the JFrame.
I had to put exact number of colls and rows in the JTextArea's constructor, if didn't the the JTextArea was ...
0
votes
1answer
29 views
How to immediately show scroll bar in the JScrollPane
I added JScrollPane to my JPanel but I wanted to make scroll bar visible at the start of the program not only when the text is going out of the screen is that possible?
jpMiddle = new JPanel();
...
0
votes
1answer
29 views
Custom scrollbar jScrollPane appears twice in iframe
I have a problem with a custom scrollbar appearing twice in an iframe.
The scrollbar looks OK in IE, but not in Chrome, Firefox and Safari.
Here you can have a look to the page:
...
0
votes
0answers
28 views
jquery.jscrollpane - iPad - cannot separate fixed position scrollable “div” filter from 'main' scrollable content
iPad - cannot separate fixed position scrollable "div" filter from 'main' scrollable content.
I have a webpage which contains
1) A fixed position ( left-hand-side ) "filter" "div" contained within a ...
1
vote
1answer
24 views
Java Adding JScrollPane to JComponent
Java:
I have a JComponent that draws an image which can be rescaled. I need to have scroll bars that will appear when the image becomes large. I passed the JComponent to a JScrollPane and then added ...
-1
votes
0answers
23 views
fixed columns inside jScrollPane with horizontal scroll fixed to the bottom of the page
I made a table with first 3 columns fixed to the left of the div (by absolute positioning), and I am able to scroll horizontally. My problem is, the table can have a lot of rows, and I would like for ...
0
votes
1answer
31 views
IE generates spurious mouse click event for absolute-positioned div when dragging child element
In the jsFiddle below, click the link 'Click to show menu' to display an absolute-positioned div with a jScrollPane attached. Start dragging the scrollbar thumb but allow the mouse to wander a little ...
0
votes
1answer
28 views
Autoscroll a JScrollpane when dragging an object
I have created a appointment calendar which essentially is a JPanel which contains other movable and resizable JPanels all surrounded by a JScrollpane, this all works well and I am able to scroll ...
1
vote
1answer
58 views
JTabbedPane does not add more than 1 tab when using .addTab()
I am wondering why the JTabbedPane only adds 1 tab. When I use the method addTab and then reuse it to create a new tab, it overrides the first tab created. Here is the code: BTW, most of the code ...
-4
votes
1answer
49 views
scroll JPanel when there is only background image
I have Swing frame. and JPanel on the frame.
I have only background image on Jpanel. everything works well. but when background image is too large, I don't manage to scroll it.
import ...
0
votes
0answers
10 views
Jscrollpane mousedown>iframe mouseleave>outside mouseup
When I mousedown on jscrollpane drag bar and move to a dive containing iframe and do mouseup on iframe, and move mouse outside iframe, it starts scrolling even on mouseup. When I click anywhere on ...
0
votes
1answer
43 views
java - register parent JPanel to MouseEvent
Consider I have the following code:
public LSUIEditingPanel(LSView view) {
super();
parent = view;
controller = view.getController();
LayoutManager overlay = new ...
0
votes
0answers
18 views
jquery.jscrollpane : JScrollpane now a function
I am pretty good with javascript and loading external js files, but this boggles me. I have included both jQuery and jscrollpane in my code, and in that order. Then I can the function just under:
...
0
votes
1answer
21 views
JScrollPane for JTable
public class ERPFrame extends JFrame {
private JPanel contentPane;
private JTable table;
private JTextField textField;
private JTextField textField_1;
private JTextField ...
1
vote
0answers
50 views
Force fixed size JScrollPane in DesignGridLayout
I want to display JTextArea with 2 visible row and 30 visible column.
package testing;
import java.awt.BorderLayout;
import java.awt.Dimension;
import javax.swing.JComboBox;
import ...
1
vote
1answer
37 views
JScrollPane not appearing on a JTextPane
I searched on stackoverflow & on the internet, but it did not work. The scroll bar does not appear. Please, help me, I will be happy to vote for your answer if it works. Here is the code: ...
0
votes
2answers
42 views
Java Swing Scrolling By Dragging the Mouse
I am trying to create a hand scroller that will scroll as you drag your mouse across a JPanel. So far I cannot get the view to change. Here is my code:
import java.awt.*;
import java.awt.event.*;
...
0
votes
3answers
55 views
JTable autoscroll to the bottom in Java
I would like the JTable to autoscroll to the bottom whenever I add a new column and show the last 10 rows. However, I have the option of scrolling to anywhere I want (mouse listener?). Do you know how ...
2
votes
1answer
55 views
Jscrollpane moving content around
I'm a new poster but have used Staockoverflow many a time for help in a tricky situation but this time after much searching and hair pulling I think I need to post.
I'm using Jscrollpane to style a ...
0
votes
2answers
44 views
How to get horizontal scroll in JTable
I have 2 issue that i need to ask, 1st how to get the horizontal scroll for my JTable, currently it shrink all the columns which is not readable at all. I have 20 columns to show in a Table.
2nd, how ...
0
votes
1answer
40 views
How to set and lock the JScrollpane to the bottom?
How can I set the JScrollPane to the bottom of the JTextArea? I tried the
DefaultCaret caret = (DefaultCaret)getCaret();
caret.setUpdatePolicy(DefaultCaret.ALWAYS_UPDATE); But it didnt work ...
-3
votes
3answers
71 views
Prevent scrollbars disappearing when exiting component inside the JScrollPane
I made a JPanel that contains a JScrollPane that surrounds a JTextArea. I want to hide the scrollbars when the mouse exits the JScrollPane.
If I set the MouseListener on the JScrollPane, then nothing ...
0
votes
2answers
33 views
JRadioButtons in a custom JScrollPane not appearing?
I'm writing an IM client GUI for a project. On the left of the window, I want a scrolling pane that has radio buttons for each active user, so that when a New Chat button is pushed, a chat will be ...
-1
votes
2answers
44 views
Java JPanel & JScrollPane
I working on a application that manage image's filters etc.
I want to have scroll bars when the image is to big to be display.
I put my customize panel that extend JPanel in a JScrollPane and I add ...
0
votes
0answers
33 views
JScrollPane for Java 2d top-down game
Would it be bad for me to run a Java 2d top-down game with a JScrollPane? Reading through the Java Docs, it is possible. Resetting the JScrollBar position after moving the player... I just want to ...
0
votes
2answers
31 views
Resize JList in a JScrollPane based on values
I have a JList in a JScrollPane:
JList list = new JList();
JScrollPane scrollPane = new JScrollPane(list,
JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
...
-1
votes
0answers
24 views
How to disable resizing of jscrollpane container jspPane for absolute positioned scrollbar?
I just tried my first experiments with jscrollpane and want to have the scrollbar as an absolute positioned container - that work's with CSS. But where is the option, to disable the auto-Resize of the ...
0
votes
1answer
36 views
Zooming in and out a panel using jscrollbar in java
Input :- ArrayList of point2d of a geometrical shape
and transformin it as:
private void SetScale1(Graphics2D gr, int gr_width , int gr_height, double left_x , double right_x , double top_y , double ...
0
votes
2answers
56 views
Swing JScrollPane resets scroll position when updating
I have a JPanel view inside a JScrollPane. The Jpanel paints some shapes which has to change dynamically in order to reflect a changing datamodel.
I have implemented a timer that should repaint the ...
0
votes
1answer
99 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 ...
1
vote
1answer
40 views
Scrollable text not depending on text length
I'm creating a GUI with a sidebar which has constant width, I want to add a Scrollable text, being the text into a JTextPane, all this into a JPanel PanelList.
Problem is that it will automatically ...





