I have a form with several modal popups that are used for handling C.R.U.D. operations.
On the Form I have a gallery that is not in a datacard.
The Gallery visibility is determined by the BOMAction_Dropdown.Selected item.
The Gallery visible property is set this way...
Switch(
BOMAction_Dropdown.SelectedText.Value,
"", false,
"Copy From", true,
"Add", false,
"Delete", true,
"Change Qty", true,
"Change Color", true,
"Change Size", true,
"unknown"
)
Depending on the CRUD operation...the individual Modal Popup local variables are set when I click the Save icon. The local variables are set this way....
Switch(
BOMAction_Dropdown.SelectedText.Value,
"Copy From", UpdateContext({varCopyBOMPopup:true}),
"Add", UpdateContext({varAddBOMPopup:true}),
"Delete", UpdateContext({varDeleteBOMPopup:true}),
"Change Qty", UpdateContext({varChangeBOMQtyPopup:true}),
"Change Color", UpdateContext({varChangeBOMColorPopup:true}),
"Change Size", UpdateContext({varChangeBOMSizePopup:true}),
"unknown"
);
When I click the save icon the modal popup will overlay all other control except the gallery. How can I correct this?
