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.
Hello everyone, I have a question, well; I have a rather novice doubt, I have a text, and I want that text to appear in a rich text what I put, but what I am looking for is that as I add data to that text, more rich text will be added, how could I do that? I already added it in local variables, I managed to save it in a rich text, but to not delete this one and make a new one, what could I do? I hope I understand, thank you very much!
Discussion posts and replies are publicly visible
Could you please put more light to your query? What exactly you are looking for in the below Quote?
Gustavo Silva said: I add data to that text, more rich text will be added
Code, screenshots, anything more that you can add? Because whatever information you have provided is not sufficient.
Hello Gussil,
I hope the below code will address your query
a!localVariables( local!text:"Enter Text ", local!value, { a!richTextDisplayField( value: { a!richTextItem( text: local!text, size: "LARGE" ) } ), a!textField( label: "Enter Text", placeholder: "Enter Text To See Rich Text", value: local!value, saveInto: { local!value, a!save(local!text,append(local!text,local!value)) } ) } )
Thanks you!!