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.
Hi My question is
i need a form to fill the details like below, for this requirement i am thinking to go with the form layout will be fine or any other methods i can go with?
after filling these details if user wants to add one/more contracts he should get the same form below one after the other is that functionality is possible in forml ayout ?
let me know if any suggestions
button to add more forms
Discussion posts and replies are publicly visible
You can do it but before that wanted to know why not you are using grids for this?
you can see above requirement it looks like a form and when the user see the form they'll understand easily, user friendly. even i have asked for any other methods i can go with. am sure with grids it will not be user friendly looks like
Oh Okay, Then Yes
a!localVariables( local!data: 'type!{urn:com:appian:types}Account'(), a!formLayout( contents: { a!forEach( items: local!data, expression: { a!textField( label: "Account ID "&fv!index, value: fv!item.AccountID, saveInto: fv!item.AccountID ), a!textField( label: "Account Name "&fv!index, value: fv!item.AccountName, saveInto: fv!item.AccountName ) } ), a!linkField( links: a!dynamicLink( label: "Add more", saveInto: { a!save( local!data, append( local!data, 'type!{urn:com:appian:types}Account'() ) ) } ) ) } ) )