I got few questions on buttonWidget.
1) a!buttonWidget(
label:"Groups"
)
The label defined inside buttonWidget always displays in Upper case on Interface. Is there any workaround to show the label in the lower case?
2)a!buttonWidget(
label:"+"
Is there any work around to increase the size of the "+" sign inside the button layout without increasing the button size?
Discussion posts and replies are publicly visible
Button labels have displayed in all CAPS since the major UI overhaul which happened in version ~17.1 - there is no workaround that I know of, other than using some different component. There's also no way to control the font size.
You would be able to do a lot of this within the a!richTextDisplayField component, while using the a!submitLink() link component. It wouldn't be a PROPER button, but could be made to act almost exactly like one.
can you share new information? there isn't a link in your post
thx
Sorry, you fell for one of the standard spambots that tend to post here in this style alarmingly frequently.
hi rohinip91
Please try like as submit like , it will give you all expect parameters same as button
a!columnsLayout( columns: { a!columnLayout( width: "NARROW", contents: a!cardLayout( style: "ACCENT", height :"AUTO", contents: a!richTextDisplayField( value: "Submit" ), link: a!submitLink() )
) })
FYI the comment you're replying to is 4 years old as of now.
/*Button Widget labels are always uppercase, that is just the style of the user interfaces. A workaround would be to use links instead of buttons, using either a!richTestDisplayField or a!linkField */
a!richTextDisplayField( value: a!richTextItem( text: "lowercase label", link: a!dynamicLink( /*Code link*/ ) ))
a!linkField( links: a!dynamicLink( label: "lowercase label"/*code lines */ ))
/*we cannot increase the size of text within the button. A workaround would be to use an a!documentImage with the built-in "ADD" icon, or upload your own image*/
a!imageField( images: a!documentImage( document: a!iconIndicator( "ADD" ) ))
/*I would also suggest looking for other work arounds as well. While Appian has its limits with button User interfaces, we are using only the "action verbs" as your button text will help to alleviate some of the problems you are finding.*/