Appian Community and Appian Academy are being upgraded. As a part of the upgrade, Appian Community is currently in read-only mode, and user registration is disabled until August 3. 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 requirement where i have a interface in which I have two fields let's say "error" and "error type"
And also I have the below fields,
Personal details (section header)
Name - jack
Last name - rayan
Mailid - blank
Then the result should be,
Error - personal details
Error type - mailid
Discussion posts and replies are publicly visible
You can create a map where you have the section, fieldLabel and the fieldValue both defined in different keys and can iterate through that map when the button is clicked to see if it had a value. If not, you can use fv!item.fieldLabel to display the Error type and do the same for Error
Somewhat like this
{ a!map( section: "Personal details", field: "First Name", value: ri!personalDetails.firstName ), a!map( section: "Personal details", field: "Last Name", value: ri!personalDetails.lastName ), a!map( section: "Personal details", field: "Email Id", value: ri!personalDetails.email ) }
Sey that was not section it was created in card layout where I used a rich text as "personal details" does it work with the same
Yes it will work the same way.