-
Bug
-
Resolution: Fixed
-
P3
-
7u21
-
b72
-
windows_7
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8135968 | emb-9 | Semyon Sadetsky | P3 | Resolved | Fixed | team |
JDK-8303978 | 8u381 | Anton Litvinov | P3 | Resolved | Fixed | b01 |
JDK-8305438 | 8u371 | Anton Litvinov | P3 | Resolved | Fixed | b31 |
JDK-8304669 | 8u361 | Ryan Wallace | P3 | Closed | Fixed | b35 |
java version " 1.7.0_21 "
Java(TM) SE Runtime Environment (build 1.7.0_21-b11)
Java HotSpot(TM) Client VM (build 23.21-b01, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows [Version 6.1.7601]
A DESCRIPTION OF THE PROBLEM :
[for Windows7!]
in the " libraries/documents " folder, in the detailled view, the columns are mixed up.
The size if shown in the " date modified " column and the " type " shows the date modified. Size and " folder " columns are empty.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
[for Windows7!]
1.) create a file chooser (see testcode)
2.) in the " look in " drop down, choose " Libraries "
3.) switch to the " details view " mode in the file chooser, so the details are shown in a table
4.) double click the documents folder
5.) have a look at the column headers, and what is contained in this columns
important: this folder " documents " needs to have some content, files and other folders
ACTUAL -
unfortunately, I cannot add a screenshot here...
the columns are mixed up.
The size if shown in the " date modified " column and the " type " shows the date modified. Size and " folder " columns are empty.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
public class MyClass
{
public static void main(String[] p_args) {
JFrame f = new JFrame( " test " );
f.setSize(new Dimension(200,150));
final Container contentPane = f.getContentPane();
JButton click = new JButton( " click " );
contentPane.add(click);
click.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
JFileChooser fc = new JFileChooser();
int result = fc.showDialog(contentPane, " todo " );
}
});
f.setVisible(true);
}
}
---------- END SOURCE ----------
- backported by
-
JDK-8135968 filechooser in Windows-Libraries folder: columns are mixed up
-
- Resolved
-
-
JDK-8303978 filechooser in Windows-Libraries folder: columns are mixed up
-
- Resolved
-
-
JDK-8305438 filechooser in Windows-Libraries folder: columns are mixed up
-
- Resolved
-
-
JDK-8304669 filechooser in Windows-Libraries folder: columns are mixed up
-
- Closed
-
- duplicates
-
JDK-8041636 JFileChooser mixes up detail columns for Windows Libraries
-
- Closed
-
-
JDK-8303366 Data of all objects of Pictures directory in JFileChooser Details view are in wrong columns
-
- Closed
-
-
JDK-8297714 JFileChooser mixes up detail columns for Windows Libraries
-
- Closed
-