Details
-
Fix
-
Status: Approved (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
-
IE10
Description
The IE10 the options in the listbox of the job chain nodes are sorted automatically so that they have an incorrect order.
Example:
If you have a job chain
<job_chain> <job_chain_node state="a1" job="test" next_state="100" error_state="error"/> <job_chain_node state="100" job="test" next_state="a2" error_state="error"/> <job_chain_node state="a2" job="test" next_state="999" error_state="error"/> <job_chain_node state="999"/> <job_chain_node state="error"/> </job_chain>
then in IE10 the options of the listbox in the 'set state' and 'add order' function has the order:
100, 999, a1, a2, error
instead of
a1, 100, a2, 999, error