Questions tagged [swingx]

Contains extensions to the Java Swing GUI toolkit, including new and enhanced components that provide functionality commonly required by rich client applications.

Contains extensions to the Java Swing GUI toolkit, including new and enhanced components that provide functionality commonly required by rich client applications. Note that this project has been discontinued in early 2013.

Highlights include:

  • List item
  • Sorting, filtering, highlighting for tables, trees, and lists
  • Find/ search
  • Auto-completion
  • Login/ authentication framework
  • TreeTable component
  • Collapsible panel component
  • Date picker component
  • Tip-of-the-Day component

While it was planned to have many of these features to be incorporated into the Swing toolkit, Swing itself has been put into maintenance mode, with JavaFX being the actively developed UI toolkit shipped with JDK.

The project was hosted on http://swingx.java.net/ until java.net itself was discontinued. Historical binary artifacts are available at https://mvnrepository.com/artifact/org.swinglabs.swingx

419 questions
-1
votes
1 answer

UpdateQuery doesn't execute. How to fix this code?

I want to get the date in DATE column and want to compare with the current date. if the date is less than current date then I want to SET the value of PERMISSION column allow. But my Query doesn't execute. Which I have tried is given in my below…
Backstreet Imrul
  • 102
  • 2
  • 15
-1
votes
3 answers

JXTextField not working properly with Arabic font

I try to use prompt in swingx.JXTextField with Arabic font but it it's not working. My Code: JXTextField field1 = new JXTextField("عربي"); //not working But if I use English text it is working as expected: JXTextField field1 = new…
yazan
  • 1
-1
votes
1 answer

How to make the title of the text shift away from the mouse

How to make the title of the text shift away from the mouse, when the mouse is directed to the title of the text in java.
viky
  • 1
-1
votes
1 answer

" java.lang.InternalError: The current process has used all of its system allowance of handles for Window Manager objects

I have made an desktop app in swing and it's not running. An exception has occur stating Exception in thread "AWT-EventQueue-0" java.lang.InternalError: The current process has used all of its system allowance of handles for Window Manager objects.…
-1
votes
1 answer

Why can't I call a class method with its object?

Gym.java public class Gym extends ActiveObject { public void run() { ... } } GymController.java public class GymController extends WindowController implements KeyListener{ private Gym gym; public void begin() { …
hihello
  • 1
  • 1
-1
votes
1 answer

Autocomplete jtextfield from specific length

I want to perform auto-completion of jtextfield, for this purpose i google it and found some good examples and code snippets, but my scenario is different from all these, normally every example auto-complete the field, for example say, if i press S…
ahad
  • 37
  • 1
  • 2
  • 8
-1
votes
2 answers

How to use the repaint method in Java Swing

I am very new to the Graphics portion of Java. I have created a frame and on it I have added a panel whose color has been set to Green. Now on clicking that panel I want to draw a circle using a test class's object called Mypanel. But it does not…
-1
votes
1 answer

Need a GridBagLayout tutor for dummies please... with working example

I'm trying to create a GUI that has a JXTaskPane, within which an HTML editor pane is showing some lengthy text, then below that are two sliders. One should have the full window width divided 50/50 between the label and the slider, the next slider…
Balthasar
  • 1,227
  • 2
  • 13
  • 24
-2
votes
1 answer

How to permanently change the color of a selected row in a table in java

I would like to know how to add code in my action listener that would make the row I select or press on with my mouse change from the color red to the color white. I have tried getRowSelected() and tried to use the index but that ultimately only…
-2
votes
1 answer

Very Simple Hangman Program in Java

I want to make a very simple hangman program with a GUI that uses 6 images to show the progression of the game. I want to hardcode the word "Hello" and for each mistake the user makes the image changes. (Total of 6 progressive images). I've managed…
-3
votes
2 answers

Where is the code for combo box plus check box in adempiere multiwindow?

Where is the code for combo box plus check box in adempiere multiwindow? View the picture in the link. Where is the code for this in adempiere classes? I have already checked on APanel, VPanel, CPanel, AWindow, CTable, GridController, VInOutGen,…
Antony Joslin
  • 309
  • 4
  • 17
-3
votes
1 answer

how open a link in java swing with help of mini browser newly created

searching result show as hyperlink it can't open on my mini browser newly created
anu
  • 1
  • 1
-3
votes
1 answer

How to show a calender for a Hotel Management System?

How to show a calender for a Hotel Management System? I need to make an application that allows the management of a Hotel, i would like to draw in the interface a calender which contains the dates and rooms, so the user can see which room is…
1 2 3
27
28