Questions tagged [jide]

Jide is a Swing component library developed by Jide Software. It has an open source part called "Jide common layer" licensed under the GPL with classpath exception and several commercial component collections.

Jide is a Swing component library developed by Jide Software. It has an open source part called "Jide common layer" licensed under the GPL with classpath exception and several commercial component collections.

57 questions
1
vote
2 answers

Hiding the tabs in a DockableFrame using Jidesoft

I am stuck using JideSoft at the momemnt. I have a DockableFrame, which will have many views on it. I want to hide the tabs that let me switch between views, but I cannot figure out how. Can anybody help?
smuggledPancakes
  • 9,881
  • 20
  • 74
  • 113
1
vote
1 answer

Wordwrap in Jide's CodeEditor?

I searched for word wrap and line wrap in jide's CodeEditor and nothing found, is it possible to wrap contents around current viewport? Thank you, Mika
blackuprise
  • 440
  • 6
  • 26
1
vote
1 answer

Apply filter programatically in JideTable and FilterableTableModel

I am trying to apply a filter to an specific column in a table, when all data is loaded in the table (without applying a filter), I have let's say: Item, Status <- headers Item0 , 0 Item1, 0 Item2, 0 Item3, 1 Item4, 1 Item5, 1 So I have an Item…
Mario
  • 150
  • 3
  • 11
1
vote
0 answers

creating a Spring RCP MDI application where to start?

I'm trying to build on top of Spring RCP (1.1.0 and trunk) and JIDE Software (demo version at the moment) with Maven, and got them compiling fine. I would like to build a MDI application but I haven't been able to find any directions on how to do…
SkyWalker
  • 13,729
  • 18
  • 91
  • 187
1
vote
0 answers

What is the correct way to remove a row from an underlying DefaultTableModel when using JIDE GroupTable?

I have a JIDE GroupTable placed in a JideScollablePane inside a JideTabbedPane, instantiated from inside Matlab running on the EDT (via javaObjectEDT). I am catching an event from a JButton and deleting the selected row. If I use the…
janh
  • 1,926
  • 2
  • 11
  • 13
1
vote
1 answer

jidesoft pivotgrid

I want to use jidesoft's pivotgrid for my application.But I wonder if this component supports exporting excel,csv,pdf and printing utilities.I searced jidesoft website, but I didn't find anything. Could anyone help experienced with this component?
user1665039
  • 17
  • 1
  • 7
1
vote
2 answers

Undefined symbol sun.awt.image.CachingSurfaceManager on JIDE common layer

I've just downloaded the JIDE common layer and I'm not able to build it because it can't find the CachingSurfaceManager class. I'm trying to build this using Netbeans and the latest version of java sdk (downloaded yesterday). Should I try eclipse? I…
1
vote
2 answers

Customizable Shortcuts in Java Application

I would like to include customizable keyboard shortcuts in my Java application (the user can change them). Since this is not very unusual request, I was wondering if there exists a library/project that could help me achieve my goal. Unfortunately I…
aZen
  • 223
  • 1
  • 8
0
votes
1 answer

Jide oss: how to get checkbox in Jpopupmenu?

I am wondering how to get checkbox beside the jpopmenu items like in this question JMenuItem shows checkbox on the left, how to disable it?
KJW
  • 15,035
  • 47
  • 137
  • 243
0
votes
1 answer

jide oss 3.1.1, missing checkboxlistselectionmodel?

I am using the Jide OSS 3.1.1 while using the CheckBoxList, I find that it's missing the getCheckBoxListSectionModel? It's in the documentation but the dot operator reveals no such thing. I'm wonder if this is available only in the paid version??…
KJW
  • 15,035
  • 47
  • 137
  • 243
0
votes
0 answers

Not able to show DockablePanel after clicking button

Hi I am using JideSoft to implement Dockable Panel. I used https://www.jidesoft.com/products/JIDE_Docking_Framework_Developer_Guide.pdf as reference and developed below program. import java.awt.FlowLayout; import javax.swing.JButton; import…
0
votes
0 answers

Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: com/sun/java/swing/plaf/windows/WindowsLookAndFeel

I am trying to use LookAndFeelFactory.installJideExtension(); and get the error Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: com/sun/java/swing/plaf/windows/WindowsLookAndFeel at…
Tanu
  • 1,286
  • 4
  • 16
  • 35
0
votes
1 answer

How to apply multiple filters to the column

I have a filter applied to my column, which is considering a single filter option. How can I apply multiple filters to the same column. AbstractFilter filter; WildcardFilter filter = new WildcardFilter(filterValue) { …
Tanu
  • 1,286
  • 4
  • 16
  • 35
0
votes
0 answers

How to set icon for title of Jide's DockableFrame

I want to set an icon on the tile bar of DockableFrame. Though I tried using setFrameIcon method, it just displays the icon on bottom (footer) of the frame window. However I want to set icon for the title. Please help.
Sairam
  • 29
  • 3
0
votes
1 answer

How to setSelectionPaths() for a JIDE CheckBoxTree using the CheckBoxTreeSelectionModel?

I'm using the CheckBoxTree class which is part of the JIDE Common Layer package (http://jidesoft.com/products/oss.htm). What I'd like to be able to do is save and load the state of the CheckBoxTreeSelectionModel which is what tracks what boxes are…
Auxone
  • 11
  • 2