Adding to Picklist Dynamically Clears Current Input Data When Editing
Hi!
I think I have found a bug. But I would like your help diagnosing.
I have a form where I add to a picklist dynamically using ui.add. All works just as expected. But when I go in to edit he form and I have that same script to add to the picklist dynamically, it clears the previously selected value.
Example:
FORM
Location: Produce
Product: Apple
I have a form that adds to the "Product" picklist dynamically. When submitted the data written is as above. But when I go to edit the form and I have a script:
Product1:ui.append(filteredProdIDs);
When editing the form the previously entered value of "Apple" is now blank.
Any ideas? It seems it is not supposed to clear the already entered data when using ui.add
Thanks!