You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Here is what it does:
there is a notion of items and hosts, items can be in two states: "Not started" and "In progress".
To bring item to "In progress" item needs to use one of the hosts. If the host is already in use it should not be available for items that are still in "Not started".
I update available hosts after each transition of Items between states.
Steps to reproduce the issue:
use IE9;
for ThirsItem select Host3 from dropdown;
press "To In Progress" button on ThirdItem, item should be moved to InProgress state;
expand dropdown of SecondItem (don't touch FirstItem), it contains 2 hosts now, because 1 is in use;
press "To Not Started" on ThirdItem.
expected behavior: all dropdowns should contain all 3 hosts;
bug: SecondItem has only 2 hosts, because it was expanded;
Cannot reproduce this issue in Chrome and Mozilla.
The text was updated successfully, but these errors were encountered:
@aabenoja I can still reproduce it with 1.3.9. @VasylVuy I've just tried the latest version from master and it seems to be working fine: http://jsfiddle.net/8j5er1yp/. Could you please confirm?
Actually you fixed that bug with this version: http://jsfiddle.net/8j5er1yp/
But introduced new one:
after steps of the previous bug just move ThirdItem to "In Progress" again and SecondItem will contain all three hosts, but should contain only two.
I think this is something to do with IE9 not repainting correctly. If you actually the bind the availableHosts property to the template then this doesn't happen... We might be able to find a place where we need to hit some DOM property to force IE9 to do this repaint.
Hi All,
I have an issue with custom angular filter and select element.
I created simplified version of my application in jsfiddle: http://jsfiddle.net/98cnbv1x/6/. Tested with angular 1.3.9.
Here is what it does:
there is a notion of items and hosts, items can be in two states: "Not started" and "In progress".
To bring item to "In progress" item needs to use one of the hosts. If the host is already in use it should not be available for items that are still in "Not started".
I update available hosts after each transition of Items between states.
Steps to reproduce the issue:
expected behavior: all dropdowns should contain all 3 hosts;
bug: SecondItem has only 2 hosts, because it was expanded;
Cannot reproduce this issue in Chrome and Mozilla.
The text was updated successfully, but these errors were encountered: