-
Notifications
You must be signed in to change notification settings - Fork 8.6k
[Dashboard][Controls] Restate order when Control is removed #128660
Copy link
Copy link
Closed
Labels
Feature:DashboardDashboard related featuresDashboard related featuresFeature:Input ControlInput controls visualizationInput controls visualizationProject:ControlsTeam:PresentationPresentation Team for Dashboard, Input Controls, and Canvas t//Presentation Team for Dashboard, Input Controls, and Canvas t//bugFixes for quality problems that affect the customer experienceFixes for quality problems that affect the customer experienceimpact:lowAddressing this issue will have a low level of impact on the quality/strength of our product.Addressing this issue will have a low level of impact on the quality/strength of our product.loe:mediumMedium Level of EffortMedium Level of Effort
Metadata
Metadata
Assignees
Labels
Feature:DashboardDashboard related featuresDashboard related featuresFeature:Input ControlInput controls visualizationInput controls visualizationProject:ControlsTeam:PresentationPresentation Team for Dashboard, Input Controls, and Canvas t//Presentation Team for Dashboard, Input Controls, and Canvas t//bugFixes for quality problems that affect the customer experienceFixes for quality problems that affect the customer experienceimpact:lowAddressing this issue will have a low level of impact on the quality/strength of our product.Addressing this issue will have a low level of impact on the quality/strength of our product.loe:mediumMedium Level of EffortMedium Level of Effort
Type
Fields
Give feedbackNo fields configured for issues without a type.
Problem
The control order system is very important for hierarchical chaining. Any time the control order is out of whack by for instance skipping a control, or having the controls order not matching the actual ordering of the controls, undefined behaviour can occur.
If a user has 4 controls, and deletes the 3rd, instead of the control order being
0, 1, 2, the control order will be0, 1, 3. Any selection in the last control in the chain will apply to itself.Fix
The fix is to ensure that the control orders are maintained correctly when a control is removed.
Workaround
Any time this happens, the user can work around the problem by dragging and dropping one of the controls. This will reorder all the controls.