Appian Community and Appian Academy are being upgraded. From July 24–August 3, the Appian Community will be in read-only mode. During this time, the site will be read-only and user registration will be disabled. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!
The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.
I have an interface where I select numbers using a multi select dropdown .
When I select it is in the sorted order
In the next confirmation screen , I show these values in an array as a read only paragraph , it is not maintaining the sorred order ( shown below )
a!paragraphField( label: "Item #", labelPosition: "ABOVE", instructions: "", value: a!forEach( items: toString(local!selectedItems), expression: substitute(fv!item, ";", ",") ), saveInto: local!selectedItems, readonly: true ),
I am displaying the paragraph as shown above , Is there anyway to display the local!selected items as sorted ?
Discussion posts and replies are publicly visible
Can you check what local!selectedItems actually contains after selection?Does it show {87, 88, 89...} or is it already scrambled like {118, 150, 87...}?
Shubham Aware said:or is it already scrambled like
Without manual intervention on the designer's part, the input values will represent the order the user selected them.