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
0
votes
1 answer

Where can I find Aerith Project source code

(This question may seem off-topic but its related to my project,so please don't downvote) While reading Filthy Rich Clients by Romain Guy and Chet Hasse, I saw the description of Aerith project and when I googled it, I found that the project's…
Naveen
  • 7,944
  • 12
  • 78
  • 165
0
votes
0 answers

JXBusyLabel freezes halfway through

I have created two JFrames. 1. A Splash Screen 2. A Main Window I need to display the Splash Screen 1st and then while the splash screen is displayed, the Main Windows object gets created. (it takes few seconds to create that object as it's a…
Praneeth Peiris
  • 2,008
  • 20
  • 40
0
votes
1 answer

Having trouble adding a JComboBox to JXTable Cell

I can't seem to add a JComboBox to Jtable. I do not know what is wrong with my code. I have tried the example at http://docs.oracle.com/javase/tutorial/uiswing/components/table.html. It just doesn't work. Here is my code. JComboBox comboBox =…
unleashed
  • 331
  • 1
  • 5
  • 17
0
votes
1 answer

Rearrange Components when button is clicked (Button also adds JXCollapsiblePane)

so I'm having a problem with my buttons in java. I created my buttons through extending a JButton so I can have all of my buttons looking the same. Now, I added an ActionListener to the constructor of that button, and the ActionListener decides what…
Hathor
  • 187
  • 1
  • 2
  • 10
0
votes
1 answer

How do I update a ColourHighlighter (swingx) when the predicate has changed

I have a class called ErrorHighlighter which gets notified anytime a property called errorString is changed. Based on this propertychangeevent I update the HighLighterPredicate to highlight a particular row with a red background. ErrorHighlighter…
sethu
  • 8,181
  • 7
  • 39
  • 65
0
votes
1 answer

GlazedLists clear throws error on sorted JTable

I would like to include glazedlists in an existing project that uses JTables and JXTables. Mainly because of the easier event-handling. I have made a view tests and came across a problem when exchanging the complete list content. I do this by…
langm
  • 171
  • 7
0
votes
1 answer

How to use the SwingX JXTitledSeparator?

I am trying to use the JXTitledSeparator from SwingX to create a separator with title, like this : Here is the code i am currently using : JXTitledSeparator xTitledSeparator1 = new JXTitledSeparator(); xTitledSeparator1.setTitle( "Separator Title"…
Brad
  • 4,457
  • 10
  • 56
  • 93
0
votes
1 answer

Java Swing mouse listener not working

I would need to have a MouseListener active on a SwingX JXDatePicker component, enabling me to perform specific actions when the user clicks on the component. Unfortunately the event is never triggered. Hereby a small piece of code that reproduces…
Tom
  • 1,375
  • 3
  • 24
  • 45
0
votes
1 answer

JXdatepicker : Edit the red cross Color of unselectable Dates

I'm working on JXdatepicker and i can't modify the red color of unselectable dates, I found a subject about it, but it doesn't working "setting the following UIDefaults property JXMonthView.unselectableDayForeground any help please,
0
votes
2 answers

Error while storing jXDatePicker1 Date value in database

I am using swingxLabs' component jXDatePicker1 to pick date in a graphical format and trying to store it in the database made in derby. My code was this: Date date=jXDatePicker1.getDate(); PreparedStatement statement = connect …
Nitesh Verma
  • 1,795
  • 4
  • 27
  • 46
0
votes
0 answers

Eclipse/Java SwingX Error When Attempting to Add JXPanel Component To The Palette

I am attempting to add some Java SwingX components to an Eclipse project. I downloaded the SwingX Latest Release I also added the downloaded jar to the Java Build Path like this: And then in the design view of Eclipse, I add a new component like…
Tikhon
  • 947
  • 2
  • 18
  • 32
0
votes
1 answer

Trimming the JXDatePicker in Java Swingx

I am using the Swingx JXDatePicker to enable date selection in a java application with NEtBeans. I just need the date but anytime the date is selected from the calender button, I get the date and time formatted together in this form : Sat Apr 13…
faisal abdulai
  • 3,739
  • 8
  • 44
  • 66
0
votes
1 answer

Swing Painting Issue

I have some problems with swing painting. My following UI (take a look at the next picture) has a JTextField on the left side, which has the possibility to show autocompletion hints. On the right side, elements, which where selected from the…
endian
  • 4,761
  • 7
  • 32
  • 54
0
votes
1 answer

implementing JXTreeTable

I'm trying to understand JXTreeTable , for that i referred one site for simple JXTreeTable implementation : Below is the modified code (that i picked it from one site) import java.awt.BorderLayout; import java.awt.Dimension; import…
c.pramod
  • 606
  • 1
  • 8
  • 22
0
votes
1 answer

Slow response from autocomplete

I have applied an auto-complete functionality to two textFields. For this I used AutocompleteDecorator. I have observed it slowing down to the point where I am unable to even enter a single character. Any solution for this? Thanks JTextArea…
FirmView
  • 3,130
  • 8
  • 34
  • 50