a!localVariables( local!choiceValues: cons!VS_VALUES(list of array : "AB","BC","CD",) local!dropDownValue, local!value, a!multipleDropdownField( choiceLabels: local!choiceValues, choiceValues: local!choiceValues, value: local!value, saveInto: { a!save( local!value, if( contains( save!value, index(local!choiceValues, 1, {}) ), 0, save!value ) ), a!save( local!dropDownValue, if( contains( save!value, index(local!choiceValues, 1, {}) ), remove(local!choiceValues, 1), save!value ) ) } ) )
Hi All. Hope you all are doing well.
I am using multiple dropdown and working with records. The above code i am trying to edit already present value in the multiple dropdown. Above is the code .
If i try displaying the selected value i am unable to deselect it and select new values and if i am able to do it i am unable to display already present value .
Can anyone please help me with the point i am missing ?
Thank you very much in advance.
Discussion posts and replies are publicly visible
a!localVariables( local!choiceValues: {"AB", "BC", "CD"}, local!dropDownValue: {}, local!value: {}, a!multipleDropdownField( choiceLabels: local!choiceValues, choiceValues: local!choiceValues, value: local!dropDownValue, saveInto: { a!save(local!value, save!value), a!save(local!dropDownValue, save!value) } ) )
Hope this works for you!
Thank you for your response, but its not working as expected.
For example:
...
I have the summary page , and i want to edit a field which already has a value( Condition - "Like New") . So i go and click on update and try to change the value to "Minor Use" , "Retired".
So , this is what i am trying to achieve it.
This is the summary page. I want to update the value of condition to multiple values.
When i click on update vehicle a form pops up with the values for me to update/edit.
Now the condition field already has a value "Like New" but i want to change it to "Minor Use:, "Retired".
This is want i am trying to achieve.
if you're hoping to receive help on figuring out the issue, you will need to include much more detail here than 'not working'. That would include, 1) what you were expecting, 2) details about what it is doing instead, and 3) surrounding context like whether it's happening in the interface editor, in a running process or in a live site page, or both - and any other pertinent details that might assist in troubleshooting.
Are you trying to save multiple values into a data field that only holds a single value?
Hi Mike , I have added the details but the issue was marked as spam and had to wait for the admin to approve it.
understood, sorry - that's happening to me at the moment too. it probably misunderstood when you posted a few comments successively. please see my latest followup comment (above) which i posted after your other replies were approved.
OK. And in which way does it not work?
Or, let me rephrase, could it be that this is not a problem with the dropdown, but with the way you try to store multiple values in a single record field?