JSpinner is java class in swing package. Its a single line input field that lets the user select a number or an object value from an ordered sequence.

learn more… | top users | synonyms

1
vote
3answers
29 views

JSpinner's JButton to ImageIcon

Trying to replace the JButton controller of a JSpinner to ImageIcon instead. But for some reason it does not listen to any mouseclicks(installButtonListeners() in BasicSpinnerUI seems to add ...
0
votes
2answers
45 views

JSpinner with Display Format, Numbers only and manual edit

It is required to create a JSpinner with following features. Range should be 0 to 1000 with 10 increment. Display format should be 4 digits. (ex : 10 -> 0010) It must allow user to enter the values ...
0
votes
3answers
40 views

JSpinner getting null value

I want to take null values when my JSpinner is empty. But it returns 0.0 when I call getValue() function. public JFormattedTextField getTextField(JSpinner spinner) { JComponent editor = ...
0
votes
1answer
39 views

HOWTO Select JSpinner date field when JSpinner gets focus

I am trying to make a JSpinner (containing a minute/second timer) work for a bunch of set-in-their-ways folks who don't care beans about the mouse but want every keystroke to do exactly what they are ...
1
vote
1answer
28 views

JSpinner.DateEditor 5 minute jump

I have a timepicker looking like this: JSpinner timePicker = new JSpinner(new SpinnerDateModel()); JSpinner.DateEditor timeEditor = new JSpinner.DateEditor(timePicker, "HH:mm"); ...
1
vote
1answer
50 views

How to convert Java JSpinner number to int ?

In Java, I've been trying to cast a JSpinner number input to an integer using Netbeans. I've made it so that the JSpinner input is a number, but I can't try to cast it to my own integer without ...
0
votes
2answers
30 views

Disable up and down arrow buttons on JSpinner

I have a JSpinner on which I would like to take control of when editing is enabled. It's easy enough with the keyboard, but how about those little arrow widgets at the side? I can't even find ...
0
votes
1answer
34 views

Jspinner and JOptionPane

How should I amend this code in order to compile? I know there is a lot of problems...Thanks a lot~ What should I put in statechanged? How should I link the JSpinner to JOptionPane?(the btnEnter I ...
0
votes
1answer
27 views

Does each JSpinner object have its own Model object?

I understand the MVC framework somewhat, but this one thing confuses me a little. So if I have a JComponent such as a JList or a JSpinner, then they have models to store their data. Then does each ...
0
votes
1answer
45 views

Why does my JSpinner resize to be bigger than necessary when a SpinnerDateModel is added?

I am creating GUI form with labels and inputs. Each row has a label and then an input. One of them uses two JSpinners for input (start and end time). It is all fine and the components are all well ...
1
vote
4answers
98 views

How to limit JSpinner

The valid range for this application is 0 to 9 but there seems to be no NetBeans 7.0.1 JSpinner minimum or maximum value setting. Is there another way to limit the range of this JSpinner to 0..9?
0
votes
1answer
109 views

How to set a date and time to JSpinner in JAVA (Netbeans)?

I have a date and time value in String type. String dateTime = "2012-10-27 19:00:00.000"; And I have a JSpinner named spnDateTime with Spinner Model Type as Date. What I need to do is get the ...
0
votes
2answers
65 views

How to specify a range of valid values in a Java GUI

I am creating an IMDB application which displays and organizes movies found on you computer (by looking up the metadata via an IMDB API). In my search panel I want to give the user the option of ...
1
vote
1answer
70 views

JSpinner : how to display both numbers and text?

I would like to create a JSpinner which can take every possible Double value between a specified minimum and a specified maximum. Also, the JSpinner should be able to display a text instead of a ...
0
votes
1answer
28 views

text from JSpinner to JTextArea

How can I transfer text from a JSpinner to a JTextArea? I thought about .getText(); but it's not working. dobDate = new JSpinner(new SpinnerDateModel(today, null, null,Calendar.MONTH)); dateEdit = ...
1
vote
2answers
142 views

How to get only Hour and Minute of JSpinner?

I have a JSpinner. When i usespinner.getValue()it gives me Sun Mar 24 01:11:41 PDT 2013 but i want to have only Hour and Minute in 24 hour format Date date = new Date(); SpinnerDateModel sm = ...
0
votes
2answers
36 views

JSpinner Source?

I have a class with two JSpinner objects in them, x and y. I have one change Listener which is added to both. can someone tell me how I can implement my change listener so that the listener can tell ...
0
votes
0answers
45 views

Fixing the size of a JSpinner

I have a JSpinner object that fills the entire JPanel it is contained in. How do I set a spinner to a single line and the maximum length of it is the panel width?
1
vote
1answer
103 views

How to get int value from spinner

I'm using NetBeans 7.1 to code in Java. I have a JFrame where I have spinner with integer values on it, I want to know how to get the active value in the spinner, I mean, the one that the user picks ...
2
votes
1answer
65 views

Typing Number Into JSpinner with Subclassed SpinnerListModel

I want to have a JSpinner that displays an non-patterened sequence of numbers (say, a sequence of prime numbers). This pattern is too complicated for a SpinnerNumberModel, so I decided to subclass ...
0
votes
2answers
220 views

Make JSpinner Select Text When Focused

I would like to change the behavior of a JSpinner so that when you click on the text, it selects it. This makes it easier to replace the field with the value that you want. Unfortunately, I can't get ...
0
votes
0answers
87 views

JSpinner does not transfer focus when pressing Enter

The code bellow was supposed to transfer the focus to the next control after hitting the Enter key at anytime, the event fires but .transferFocus is not transfering the focus, what could be wrong? ...
1
vote
1answer
143 views

JSpinner in Double format

I'd like to create JSpinners with support for non-integer values such as 2.01 and -3.456, so getValue() returns a Double. Not only this, but I'd like the step size should be dynamic using something ...
1
vote
1answer
100 views

JSlider getValueIsAdjusting odd behavior

...or maybe my programming is the odd behavior... I am trying to create a class that I'm using a lot in my program. It is a class that creates a JPanel control that contains a Jlabel at the top in ...
0
votes
1answer
60 views

JSpinner sometimes not displaying properly

My problem is that the JSpinner (named spinnerCantidadPuntas in the code) is sometimes not showing at all, or just buggy. when i run the project (F6) its almost guaranteed to not show properly, when i ...
0
votes
0answers
10 views

Cannot get appropriate date

I m using a JSpinner to get the time from the user and the date is taken from a JComboBox using 2 items:today and tomorrow. However, when using the code below,I get the date n year as 1 Jan 1970. ...
1
vote
2answers
157 views

JSpinner giving old values

I am using couple of JSpinners in my project who display the hour and minutes. When the JSpinner is incremented or decremented i have to save the value to the database. But the problem is that the ...
1
vote
3answers
146 views

How to check if value was set manually and not with setValue (JSlider, JSpinner)?

How can I check if the value of a JSlider or JSpinner was set via the graphical interface and not via the method setValue( int n) ?
2
votes
2answers
100 views

JSpinner keeps spinning while JOptionPane is shown on ChangeListener

So I created a Java application that uses a JSpinner and a ChangeEventListener to run some code when certain values are reached. When those certain values are reached, a JOptionPane appears. But then ...
-1
votes
1answer
235 views

Preventing negative values in jSpinner

I am using netbeans to build gui application in java. It has a jSpinner. I set its minimum value to 0. When i run and click on the down arrow button, i am getting, negativearraysizeexception. Any ...
0
votes
0answers
190 views

Digital clock swing

I have a live clock and time is updated every second using a Timer. The user can also change the time ans set it by clicking at a button go. Digital clock implemented using a JSpinner and ...
2
votes
1answer
89 views

How is JSpinner different than other swing components?

I have a method that can recursively enable/disable all components within a JPanel. There are also exception lists. So I can do the following Disable all components in panel1 except for textfield1, ...
2
votes
2answers
183 views

JSpinner with SpinnerDateModel weird behaviour

I swear this is so weird. I make a Spinner, set model with new SpinnerDateModel with current date, no limit, and Calendar.MINUTE unit. As it's said in the documentation: Creates a ...
0
votes
4answers
511 views

how to validate JSpinner textField in java for minimum and maximum value set?

I have two JSpinner one is for minimum and another one for maximum value set. I just want that if min is set some value then user can not enter less than minimum text field value in JSpinner of ...
0
votes
1answer
106 views

Create a custom exception for a JSpinner

I have two JSpinner components for which I've created a custom exception and it was working very well. Yesterday I modify the spinner in Netbeans, I added a spinner model editor because I wanted only ...
0
votes
1answer
120 views

How to allow only positive value in a JSpinner?

I want to allow only positive value in my JSpinner. How could I set it in Netbeans? I tried in the properties of the spinner by choosing model and then the method call and after I don't know how to ...
0
votes
1answer
127 views

Java JSpinner painting twice

Quick picture to show what is happening The JSpinner is appearing twice as seen in the picture above. The first appearance at point (0,0) that should not be there is not selectable, editable or ...
0
votes
1answer
109 views

Java Swing - I have a requirement to convert enter number to minutes and seconds in HH:MM format

In Java Swing, do we have text component that will work just like how we set the time in Microwave. By default system should display 00:00:00 (hh:mm:ss) in a textfield. Users focus defaults in the ...
2
votes
0answers
30 views

Java JSpinner odd integer display behavior when using 9s

I am trying to set the maximum value of a JSpinner to match the maximum integer value so the number can be used in a SQL query of a MySQL database. Here is the set up code for the spinner and model: ...
0
votes
0answers
103 views

JSpinner with mask formatter

This question is similar to: JFormattedTextField with MaskFormatter I want to do the same thing with a JSpinner but the following lines seem to unregister the SimpleDateFormat of the DateEditor so my ...
1
vote
2answers
138 views

JSpinner text color

I'm currently creating a GUI in NetBeans and I have a JSpinner that contains a list of colors, but I'm not sure how to make the text the corresponding color of each one. I.E. - Red (should be colored ...
2
votes
1answer
162 views

JSpinner: Display a range of signed HexBinary values

What is the best way to display a range of signed HexBinary numbers in a JSpinner? e.g. from 0x8000 to 0x7ffe I have tried the following solutions, without much luck: Use a JSpinnerNumberModel ...
1
vote
1answer
133 views

How can I show 1000 as 1.000 in java spinner [duplicate]

Possible Duplicate: JSpinner editor locale I have to show 1000 value as 1.000 in the spinner in java , by default it is showing as 1,000. But in European locale the number should be in ...
1
vote
2answers
271 views

how to increase the size of jspinner arrows as per touch screen requirements on desktop

Hi Can anybody help me to how to increase the size of jspinner arrows as per touch screen requirements on desktop
1
vote
2answers
121 views

Avoiding JSpinner to take letters

I have a jSpinner with a SpinnerNumberModel like this: spinnerModelFix = new SpinnerNumberModel(0, 0, 65535, 1); JSpinner fixedValueSpinner = new JSpinner(spinnerModelFix); I just want to show ...
1
vote
2answers
447 views

how to set Calendar from JSpinner result value?

I am trying to make Calendar month&year picker. How can I set calendar from two jspinner? jspinner 1 = month value jspinner 2 = year value maybe it just to get int value from jspinner.. how ...
0
votes
1answer
293 views

JSpinner dynamicaly updated, how to remove elements?

I have a JSpinner with a SpinnerListModel . What I want to do is, once the list is loaded in the model and the JSpiner shows in a frame, it should be possible to remove elements from the spinner. This ...
0
votes
0answers
75 views

Don't trigger event when another component would trigger it

I have a JSlider and JSpinner which are “linked” to each to each other. So the JSpinner shows the value of the JSlider. Now when I move the JSlider I need to change the value of the JSpinner (and vice ...
1
vote
0answers
97 views

Implementation of SpinnerModel

I would like to create a JSpinner that cycles through the overs in a cricket match. So the values should go: 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.1, 2.2, 2.3, 2.4, 2.5, ...
9
votes
3answers
167 views

Difference in JComboBox and JSpinner

I'm writing a Java Desktop utility in Java swing and have a minimal GUI part in it, most of work is done on server side i.e. backend. So, I don't want to spend a lot of time on GUI part, learning ...

1 2 3