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

Jide DockableFrame: how do use WindowListener for my docking frame?

I'm using the DockableFrame class (extends JComponent) from the Jide docking framework. I want to add a listener to run some code when the docking frame is closed. I tried to find information but every source I read tell me to use…
Guillaume F.
  • 1,010
  • 7
  • 21
0
votes
1 answer

How to disable execution of HTML on table cell tooltip?

I'm using the PropertyTable from JIDE and I'm having a problem with tooltips when hovering over a table cell. This table uses JTooltip and if I have on one cell a string containing html like this: BOLD When hovering over, the tooltip will…
0
votes
0 answers

Numeric sorting is not working in uitable of Matlab. Need assisstance to override some JIDE methods in matlab

I am trying to sort a matlab ui table columns(created using jide). But instead of getting sorted numerically, it is getting sorted based on string. Ex if i have 4,44,2,22,1,11 it gets sorted like 1,11,2,22,4,44 instead of 1,2,4,11,22,44 …
0
votes
1 answer

Need Shortcut keys for JOption(javax.swing) /Jidesoft(com.jidesoft.dialog) Error dialog

I am Using following code, StringBuffer sb1 = new StringBuffer("Map Following data:\n WTXFF,WTXF"); JScrollPane scrollPane = new JScrollPane(new JLabel(sb1.toString())); Object[] options = new Object[] {"ShowMappingTable" , "Cancel", }; …
sandip
  • 419
  • 1
  • 6
  • 13
0
votes
1 answer

JideTabbedPane close button color

I am using JideTabbedPane and i have the close button displayed using the following: myTabbedPane.setShowCloseButtonOnTab(true); The problem is my tabbedpane's theme is a dark color and the "X" close button is an "X" which is black in color. The…
Cherple
  • 725
  • 3
  • 10
  • 24
0
votes
1 answer

Controlling pop-up (dropdown) menu size of a AutoFilterTableHeader for a jtable

How do I control the size of the auto filter pop-up menu for a jtable header. I have some long text as the cell input and the pop-up menu spans across monitors? columnName =[{'Date'},{'RSS'},{'Title'},{'Description'}]; DTM =…
Amit
  • 185
  • 15
0
votes
1 answer

How to remove tree lines from JideSoft TreeTable

I have created a tree using TreeTable and now that I have all the data in I want to remove the tree lines that are displayed on the left side. As you can see here: I want the tree to look like this: I tried using these lines of code to remove…
InsaneCricket
  • 125
  • 2
  • 13
0
votes
0 answers

JComboBox selection issue

I am refering to this post's accepted answer - JTree selection issue I have a JTree which with node containing label and CheckBoxListExComboBox (Jide component- JComboBox with checkboxes).The UI renders properly but when i click on the combobox i…
0
votes
1 answer

Why DockableFrames does not work inside JPanel?

I have a little problem with (JIDE) I'm currently trying to put DockableFrames inside a JPanel but by doing that the Docking system doesn't work. I tried various classes (DockableHolderPaner for example) as a holder for my DockableFrames but it…
Sygmei
  • 467
  • 2
  • 10
0
votes
0 answers

How to reduce space between title and subtitle in JIDE BannerPanel?

How to reduce space between title and subtitle in JIDE BannerPanel?
tapan
  • 9
  • 3
0
votes
1 answer

How to calculate real average in JIDE pivot table?

I found, that JIDE pivot table calculates average incorrectly. If summaries contains averages too, then it computes average of averages, which is not the same value as total average (and just senseless value). Is it possible to calculate true…
Dims
  • 47,675
  • 117
  • 331
  • 600
0
votes
2 answers

Override getColumnClass not working for Date Columns

I am using JIDE grids Sorting and Autofiltering capability in Matlab. I have overridden the getColumnClass and filtering and sorting is working well for Integers, Double and String Columns (sorting numerically for numbers and lexically respectively…
Amit
  • 185
  • 15
0
votes
0 answers

Filtering on a GroupTable

I have a GroupTable where the grouping is done based on the first column. Is there a way to filter the GroupTableModel based on the nodes under the Grouped node and not based on the grouped node (i.e col 1).
riya
  • 9
  • 3
0
votes
0 answers

Using TableCellRenderer in XdevSortableTable, XdevAggregateTable

Well, I'm trying to render some components in the tables mentioned above. I know thats done with implementing a custom TableCellRenderer, and that works just fine in normal JTable, e.g. doing something like this: import java.awt.Component; import…
zerdus
  • 1
  • 1
0
votes
0 answers

JIDE Table column cell styles getting applied to other jide tables as well

I have two instances of Jide SortableTables. Each table having some string columns. For columns in table A , applied cell style to display a tool tip and change the horizontal alignment to Right. But the same style is applied to other columns in…