Dropdown not saving

Trying to make an order screen, and I’m having issues with the drop down . It works to create a new order, problem is if I want to go back into the “order” it should prepopulate with the order information, but instead is blank, I have the same work flow for customers , but in customers its text box , so it filled, then the workflow know that its a edit instead of new order

1 Like

Check whether the parent group of the dropdown contains the parent group’s order parameter. If it isn’t displaying the order information, then a parameter is not being passed — either the conditional you have isn’t being met, or the parameter in the parent group’s order is empty.

My suggestion would be to avoid using a conditional and instead set the default value to the parent group’s order customer, referring to the order in the popup.

Then, when you open the popup, you display the order in the popup if it’s an edit. If it’s a creation, you simply show the popup without displaying anything.

This way, you don’t need any conditionals for the default values of the dropdowns or inputs.
Also, in your workflow conditions, you would only need to check whether the order in the popup is empty or not.

So i figured it out, I ended up updat the place holder with the information that is linked, when i create a new order it is blank, when i open a order its filled with the information I have attached to the database—> the customer, seems to be working now, crazy something so small spent couple days on it thank you

image