-
Notifications
You must be signed in to change notification settings - Fork 27.4k
ngOptions: non-grouped options shouldn't float to the top when using group by #10531
Comments
@tdakhla not sure why you saying that
IMO the current behaviour has much more sense - you are telling a select box to group items and this is exactly what it does. The micro-syntax doesn't support mixing regular options and optiongroups and honestly I can't think of a variation of it that would support your use-case. Now, I guess this issue boils down to making sure |
@pkozlowski-opensource I believe that the expected behavior is the non-grouped items displayed in the dropdown respect array ordering as much as possible, even when using group by. It's definitely possible to have an array with out of order grouped items (http://jsfiddle.net/wv4swhpn/), and the resulting behavior is fine in this case (first occurrence of a grouped item is where all the grouped items will live), but.. the non-grouped items get put at the top. Given current state behavior, that is definitely a discrepancy as I would expect non-grouped items to be bunched where the first non-grouped item lives. However, since I don't believe that non-grouped items are in any way related to each other, they shouldn't be bunched at the top, or even where the first non-grouped item lives - they should remain where they are in the list. |
This is fixed by #10639 |
Example fiddle where non-grouped options incorrectly always float to the top: http://jsfiddle.net/raxzauyL/ (against 1.3.7)
The expected behavior is that the
options
should be interspersed between theoptgroups
, not bunched at the top. I've tried setting thegroup
by value to '', undefined, null, and even removing the key from the obj completely, but none seem to work.The text was updated successfully, but these errors were encountered: