I want to add text field with clickable icon but I am unable to find witch plug-in i nee to use,can any one help me with this.I need text field like this.
Discussion posts and replies are publicly visible
Hi, in Appian you would have to configure it with a textfield and icon and it would look like
{ a!cardLayout( contents: { a!columnsLayout( columns: { a!columnLayout( contents: { a!sideBySideLayout( items: { a!sideBySideItem( item: a!textField( label: "Message", labelPosition: "COLLAPSED", placeholder: "Ask your question", saveInto: {}, refreshAfter: "UNFOCUS", validations: {} ) ), a!sideBySideItem( item: a!richTextDisplayField( labelPosition: "COLLAPSED", value: { a!richTextIcon( icon: "paper-plane", color: "SECONDARY", link: a!dynamicLink(), linkStyle: "STANDALONE" ) }, marginAbove: "LESS" ) ) } ) } ), a!columnLayout(contents: {}) }, alignVertical: "MIDDLE" ) }, height: "AUTO", style: "TRANSPARENT", marginBelow: "STANDARD", showBorder: false ) }
Thanks ,but I need same like that image and thanks for this