[reintroduced with 8.0.0-ea-b115]
I have a TableView control. When I hide the 1st column, the 2nd coulmn (which is the 1st visible column, i.e. the left-most column) cannot be resized. If I move (drag) the 2nd column (first visible) to a different position in the table, every column resizes properly. If I move the column back to its original left-most position, it cannot be resized again.
Attached is the code that I have used.
Here is the declaration of UserData which is missing from the attached file.
public class UserData
{
public UserData(){}
public int ID;
public String Name;
public String Password;
public Date LastLoginTime;
public Integer ConnectionPoolID;
public boolean IsSuperUser;
public boolean IsEnabled;
public Date LastModifiedUTC;
}
I have a TableView control. When I hide the 1st column, the 2nd coulmn (which is the 1st visible column, i.e. the left-most column) cannot be resized. If I move (drag) the 2nd column (first visible) to a different position in the table, every column resizes properly. If I move the column back to its original left-most position, it cannot be resized again.
Attached is the code that I have used.
Here is the declaration of UserData which is missing from the attached file.
public class UserData
{
public UserData(){}
public int ID;
public String Name;
public String Password;
public Date LastLoginTime;
public Integer ConnectionPoolID;
public boolean IsSuperUser;
public boolean IsEnabled;
public Date LastModifiedUTC;
}
- relates to
-
JDK-8126045 TableView with hidden/invisible columns: resizing of columns gets confused
-
- Closed
-