Re: Bug when combining ListView and SortedList?

2015-11-17 Thread Jonathan Giles
If there are any that I've missed or that you think are higher priority, leave a comment in the jira issue or email me the issue IDs. -- Jonathan On 18/11/15 1:55 AM, faste...@swingempire.de wrote: Jonathan, thanks for the clarification, I indeed misunderstood the new tag. On the other hand

Re: Bug when combining ListView and SortedList?

2015-11-17 Thread fastegal
Jonathan, thanks for the clarification, I indeed misunderstood the new tag. On the other hand: not all (related) selection issues are tagged as such, are those in danger of not being fixed for 9? Anyway, all of them _could_ be fixed in one stroke by throwing away the evil MultipleSelectionMode

Re: Bug when combining ListView and SortedList?

2015-11-17 Thread fastegal
Zitat von "Fisher, Robert" : https://bugs.openjdk.java.net/browse/JDK-8141124 This is a regression introduced in 1.8.0_60, so it might have a different origin than the problems you mention. Thanks! You are right, the "visible" behavior indeed is a regression. The underlying reason - i

Re: Bug when combining ListView and SortedList?

2015-11-16 Thread Jonathan Giles
Have been reporting variants (and ranting and suggesting fixes) for ages ... and now seeing that some of those reports got tagged "nicetohave" ... dhhh Jeanette, You are misinterpreting the 'nicetohave' label as a negative. The actual fact is that the 'nicetohave' label is applied to i

RE: Bug when combining ListView and SortedList?

2015-11-16 Thread Fisher, Robert
...@swingempire.de Sent: Montag, 16. November 2015 13:06 To: openjfx-dev@openjdk.java.net Subject: Re: Bug when combining ListView and SortedList? Zitat von "Fisher, Robert" : > Done. > Mind to add the issue #? Note that there are tons of issues around incorrect selection notifica

Re: Bug when combining ListView and SortedList?

2015-11-16 Thread fastegal
Zitat von "Fisher, Robert" : Done. Mind to add the issue #? Note that there are tons of issues around incorrect selection notification/state after modifying the underlying items. One very basic problem in all core implementations is that they simply can't handle disjoint mutations (pl

Re: Bug when combining ListView and SortedList?

2015-10-30 Thread Scott Palmer
That looks like a bug to me. Please report it. On Fri, Oct 30, 2015 at 7:07 AM, Fisher, Robert wrote: > Hi, > > I am wondering if this behaviour of ListView's MultipleSelectionModel is > correct: > > > ListView listView = new ListView<>(); > ObservableList items = FXCollections.observableArrayL

RE: Bug when combining ListView and SortedList?

2015-10-30 Thread Fisher, Robert
Done. From: Scott Palmer [mailto:swpal...@gmail.com] Sent: Freitag, 30. Oktober 2015 14:38 To: Fisher, Robert Cc: openjfx-dev@openjdk.java.net Subject: Re: Bug when combining ListView and SortedList? That looks like a bug to me. Please report it. On Fri, Oct 30, 2015 at 7:07 AM, Fisher, Robert

Bug when combining ListView and SortedList?

2015-10-30 Thread Fisher, Robert
Hi, I am wondering if this behaviour of ListView's MultipleSelectionModel is correct: ListView listView = new ListView<>(); ObservableList items = FXCollections.observableArrayList(); SortedList sortedItems = new SortedList<>(items); sortedItems.setComparator(String::compareTo); listView.setIte