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
3
votes
2 answers

how can i use JXMapViewer in my applet?

i want to write an applet that must render my map images with zoom/pan tools, i find out JXMapViewer can help me, how i can use it? where i can find related docs which help me to write an applet that request on my image server to provide tiles to…
sirvan
  • 321
  • 1
  • 8
  • 21
3
votes
1 answer

Creating a new component using java in netbeans

I am developing a software for my university project. I am using java to develop my desktop application. For that I want to add a component like this: http://www.mediafire.com/view/?6y1183p8u6phwzg I want to add a component which are like ones in…
3
votes
1 answer

Why does my JXTable sort so much slower when I switch to GlazedLists' EventTableModel?

Updated I have updated this question to more accurately describe the cause of my problem and have included a simpler example that the one I originally used. I've included a simple example below to show the performance issue I'm having. When I back…
Ryan J
  • 2,502
  • 5
  • 31
  • 41
3
votes
1 answer

Getting location of cell in JXTreeTable

How to determine the location of a particular cell in JXTreeTable on screen?
DarkKnight
  • 243
  • 1
  • 4
  • 10
3
votes
2 answers

JXTitledPanels in a JPanel a user needs to be able to choose one and click a remove button

I have a JPanel with n number of JXTitledPanels. The user should be able to click the JXTitledPanel and hit a remove button to remove it. My question is how do I know what JXTitlePanel the user has selected. here is a screen from my program…
Phox
  • 101
  • 1
  • 1
  • 10
3
votes
3 answers

Best way to implement a selection box from a large number of entries

I have a large set of data from which the user has to select one. I'm thinking of a way to implement it (of course, in a GUI). I have a few ideas. But just thought of posting here as there may be better alternatives.. Say, user has to select a name…
Anubis
  • 6,995
  • 14
  • 56
  • 87
3
votes
1 answer

HyperLinks in JXTable column, populated from database

My question is how can I make the hyperlinks from a JXTable column (just for one/specific column) to action like "_blank" links of my default desktop web browser. I use JXTable and a DefaultTableModel, also I call the data from a sqlite database. I…
3
votes
1 answer

Custom tree cell editing in a SwingX JXTreeTable

I'm trying to set a custom tree cell editor for the tree column of a JXTreeTable, but for some reason, my editor is never called. Here's the bit that is supposed to set the editor: dataTable.setDefaultEditor(DataEntity.class, new…
whatknight
  • 303
  • 1
  • 7
3
votes
2 answers

How to import SwingX without IDE

This is my first post so please don't bite my head off! I have found this: Java - How to import external packages? and this: how to include libraries in java without using an IDE but I'm still lost! I have downloaded the file swingx-1.6.zip to my…
d.j.yotta
  • 532
  • 2
  • 12
3
votes
0 answers

JXTreeTable Substance L&F paint issues

The first column of JXTreeTable is not painted on hover when using the substance look and feel. The problem persists when that same column is dragged to another position as well. Also the border is not painted as well. Is there any workaround for…
Praveen
  • 522
  • 1
  • 8
  • 17
2
votes
1 answer

Date and Time jframe GUI

i'm trying to include in my GUI a date/time picker. How can i do this?. Could someone tell me or give me a link to a tutorial?.
Rory Lester
  • 2,858
  • 11
  • 49
  • 66
2
votes
1 answer

Swingx component provider: hide component on certain rows

I've subclassed Swingx's ComponentProvider to provide JButtons but on some lines of my JXTreeTable, I don't want to show any button. The final "result" I want is to have an empty cell, like what I get when showing an empty text in a column for which…
ixM
  • 1,244
  • 14
  • 29
2
votes
6 answers

List items = new ArrayList() : it does not work

Is all in the title, I do not understand the problem this time is a bit different, I used the same Object(List) for two different programs and it does not work in the second time, see : private void…
Marwen Trabelsi
  • 4,167
  • 8
  • 39
  • 80
2
votes
1 answer

JXTreeTable: how to use ComponentProvider to set the renderer for one column

I'm using JXTreeTable to display some data and I want to use the provided mechanisms of SwingX to change the renderer for some columns. I previously used a JXTable and custom implementations of TableCellRenderer but this doesn't work anymore (I see…
ixM
  • 1,244
  • 14
  • 29
2
votes
0 answers

I want to add satalite map to java swing application using JXMapKit

peace be upon you all i want to make a java application that contain a map and controlling that map i mad the most of that but i have a problem i used JXMapKit.class i already showing the map on my application now and controlling it as i want the…