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

Small Gap between Table and ScrollPane Border Java Swing

I'm trying To insert a JTable into a JScrollPane and I see a small gap between the borders of the table and the scroll Pane.And on the left side the table looks to be aligned to extreme left.Can someone please help me fix this.? Removing…
Saikiran
  • 67
  • 1
  • 8
2
votes
1 answer

JXCollapsiblePane with JXMultiSplitPane

I have a user interface that uses a JXMultiSplitPane to display multiple components. However, I would like some of the panes to be collapsible. I thought about how I might use a JXCollapsiblePane here, but I can't figure out a good way to have the…
Jeff Storey
  • 56,312
  • 72
  • 233
  • 406
2
votes
1 answer

JXTable + GlazedLists + update during drag selection = problem

I'm having a table row selection problem with JXTable. If I run the following program, I get two frames that are viewing the same EventList. One has a JTable and one has a JXTable. Every 1000 milliseconds I update all the items with names…
Jason S
  • 184,598
  • 164
  • 608
  • 970
2
votes
1 answer

Search inside a JXTree

I am trying to perform a search with a JXTree and the searchable interface from swingx but I am not able to find any example and I dont know how it works since I have not used it previously with any other swingx components. What I do…
spuas
  • 1,683
  • 1
  • 16
  • 26
2
votes
2 answers

htmlunit always gives multiple javascript exceptions after running the project

I'm working on a project that checks an email list that is imported to see if the user is registered or not on yahoo. When I click on the Start button, it should go to the yahoo mail sign up page and check every email on this imported txt file. I've…
Dr Mido
  • 2,414
  • 4
  • 32
  • 72
2
votes
1 answer

JComboBox DropDown list is not displayed

this might be a duplicate of JComboBox popup menu not appearing , but as it is a rather old question and not been active for quite some time, plus all the answers were not solutions, that helped with my problem. Thus I decided to create a new…
Reatus
  • 289
  • 3
  • 11
2
votes
1 answer

JXTreeTable RowFilter implementation

I'll try to implement RowFilter for JXTreeTable, but it does not work. My implementation is smth like this: public class CustomRowFilter extends RowFilter { @Override public boolean include(Entry entry) { if…
Oleg Zinoviev
  • 549
  • 3
  • 14
2
votes
0 answers

CellEditor for JXTreeTable does not work

I'm trying to implement a JXTreeTable with scrollable cells. I used custom TableCellRenderer and it looked good, but renderer does not handle events, therefore I added an custom editor to the JXTreeTable. I thought the cells would be editable once I…
fcpatsof
  • 21
  • 3
2
votes
1 answer

Select graphic components when clicking on a JPanel

So I am having some trouble doing this. Basically I previously drew some line segments on a JPanel using Graphics2D and GeneralPath, and now I want to retrieve the Graphics2D/GeneralPath object when I click on it on the JPanel, is there anyway I can…
2
votes
2 answers

Unable to select "text with number and underscore" on DoubleClick in JTextPane

I have a text like, "test_1_another_2_test3" in my JTextPane. When I double click on the text, it does not select the whole text (sometimes, it selects only one character or number or the text between underscores). I can implement a…
2
votes
3 answers

How to use Swingx Components: jXSearchPanel with jTable

I would like to have some exemple of implementation of jXSearchPanel with jTable. I didn't find something on the web. Thank you in advance, Best Regards, Florent
Delildor
  • 346
  • 4
  • 13
2
votes
1 answer

Make a scrollable ColumnControl popup JXTable

Good aftermoon. I am having a interesting issue with the propeties of a JXtable. The thing is that I have created the JXTable with too many columns, so I decided to let the user choose which column to display using the ColumnControlButton that…
Jesus Soto
  • 139
  • 2
  • 13
2
votes
1 answer

How to disable JXTable default search action?

I have a JXTable in my swing app. When I press ctrl+F on the table, default search panel is opening. This panel finds only substrings. I need to find similar words with my InputText. For example, I write "test" result may be "tost", "tests",…
N0D1R
  • 313
  • 2
  • 11
2
votes
0 answers

Custom model extending SwingX AbstractTreeTableModel: Some nodes are not shown in GUI

What I am trying to do is to implement a custom control for editing of list attributes (1:n relationships). As I do not have enough reputation to post a screenshot, I will do my best to describe it. It contains a list of records as value, each…
2
votes
0 answers

How can set setTreeCellRenderer at JXTreeTable

I have this code to create a custom JXTreeTable and set a Custom CellRenderer. This is the code: tableCatSpese = new TableAlbero(null); public TableAlbero(List listaConti){ setTreeTableModel(new…
bircastri
  • 2,169
  • 13
  • 50
  • 119