<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Button Style Card Layout</title><link>https://community.appian.com/discussions/f/general/34959/button-style-card-layout</link><description>Hi 
 Need some one help!! 
 I want to create a button style card layout.I cannot change outer line color .How can i change outline color 
 
 
 My desire image is below.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Button Style Card Layout</title><link>https://community.appian.com/thread/142802?ContentTypeID=1</link><pubDate>Fri, 15 Nov 2024 07:04:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:822942b9-24b9-4c39-8ddd-f4164a098842</guid><dc:creator>Konduru Chaitanya</dc:creator><description>&lt;p&gt;Below is an example. you can re-work according to your requirement.&lt;br /&gt;&lt;br /&gt;&lt;img style="max-height:33px;max-width:229px;" height="33" src="/resized-image/__size/458x66/__key/communityserver-discussions-components-files/11/pastedimage1731654630040v1.png" width="229" alt=" " /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;{
  a!localVariables(
    local!options: {
      a!map(name: &amp;quot;House&amp;quot;),
      a!map(name: &amp;quot;Condo&amp;quot;)
    },
    local!selectedCard,
    {
      a!columnsLayout(
        columns: {
          a!forEach(
            items: local!options,
            expression: a!columnLayout(
              width: &amp;quot;2X&amp;quot;,
              contents: {
                a!cardLayout(
                  padding: &amp;quot;&amp;quot;,
                  borderColor: &amp;quot;ACCENT&amp;quot;,
                  contents: {
                    a!richTextDisplayField(
                      labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                      value: {
                        a!richTextItem(
                          text: fv!item.name,
                          color: &amp;quot;ACCENT&amp;quot;,
                          size: &amp;quot;MEDIUM&amp;quot;,
                          style: &amp;quot;&amp;quot;
                        ),
                        char(32)
                      },
                      align: &amp;quot;CENTER&amp;quot;
                    )
                  },
                  link: a!startProcessLink(),
                  height: &amp;quot;&amp;quot;,
                  shape: &amp;quot;&amp;quot;
                )
              }
            )
          ),
          a!columnLayout(
            width: &amp;quot;10X&amp;quot;,
            contents: {
              a!buttonArrayLayout(
                align: &amp;quot;START&amp;quot;,
                buttons: a!buttonWidget(label: &amp;quot;House&amp;quot;)
              )
            }
          ),
          a!columnLayout()
        }
      )
    }
  )
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Button Style Card Layout</title><link>https://community.appian.com/thread/142790?ContentTypeID=1</link><pubDate>Thu, 14 Nov 2024 23:37:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4301522d-89de-48c6-b6b5-a81b1f3afeca</guid><dc:creator>kl0001</dc:creator><description>&lt;p&gt;Do you happen to have a good example of the &amp;quot;card as a button&amp;quot; pattern? I&amp;#39;ve looked but nothing seems to resemble the a!buttonWidget and I need to have a!startProcessLink and a regular button side by side&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Button Style Card Layout</title><link>https://community.appian.com/thread/135246?ContentTypeID=1</link><pubDate>Mon, 13 May 2024 17:34:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:edda26ad-df00-4df0-9442-081929846d8f</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;Gotcha.&amp;nbsp; Start Process Link is one of the things that requires the &amp;quot;card as button&amp;quot; pattern override to be used.&amp;nbsp; Unfortunately that means you will need to work within the constraints of the Card Layout component.&amp;nbsp; I would suggest that you can set its background color, that might simply need to be enough.&amp;nbsp; Watch in future iterations of appian as they are likely to add new tweaks and/or enhance current capabilities, but I wouldn&amp;#39;t let your current design depend on possible future additions that may or may not happen.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Button Style Card Layout</title><link>https://community.appian.com/thread/135245?ContentTypeID=1</link><pubDate>Mon, 13 May 2024 16:54:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6fb645a0-5d0f-4436-8966-1eb0b51bd79e</guid><dc:creator>spykid</dc:creator><description>&lt;p&gt;&amp;nbsp;&lt;a href="/members/mikes0011"&gt;Mike Schmitt&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Each screen is created with a separate Process Model.&lt;br /&gt;I want to return to the list screen after clicking the back button.&lt;br /&gt;The list screen is not displayed when calling from site object.&lt;br /&gt;create back button with card layout and set it to a!startprocesslink, a list screen will be displayed when call it from site object.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1715618822259v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1715618829648v2.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Button Style Card Layout</title><link>https://community.appian.com/thread/135241?ContentTypeID=1</link><pubDate>Mon, 13 May 2024 14:11:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6477f00b-be57-4826-9fcb-15a8e294c44f</guid><dc:creator>Mike Schmitt</dc:creator><description>[quote userid="93495" url="~/discussions/f/general/34959/button-style-card-layout/135223"]How can I create the button design I want without using card layout?[/quote]
&lt;p&gt;a!buttonWidget()&lt;/p&gt;
&lt;p&gt;This is the standard button. It&amp;#39;s usable in ALL but a VERY FEW use cases.&amp;nbsp; What exactly is your situation?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Button Style Card Layout</title><link>https://community.appian.com/thread/135230?ContentTypeID=1</link><pubDate>Mon, 13 May 2024 11:32:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:39bbf353-1d15-488a-b4b4-8148a2708439</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;I do not fully understand your question. Is a buttonWidget not an option for you?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Button Style Card Layout</title><link>https://community.appian.com/thread/135229?ContentTypeID=1</link><pubDate>Mon, 13 May 2024 10:34:13 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:29427d08-4cc9-40d1-be62-c880aeda4596</guid><dc:creator>Richard Michaelis</dc:creator><description>&lt;p&gt;special situation:&lt;br /&gt;&lt;a href="https://docs.appian.com/suite/help/24.1/sail/ux-record-actions.html"&gt;docs.appian.com/.../ux-record-actions.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Button Style Card Layout</title><link>https://community.appian.com/thread/135228?ContentTypeID=1</link><pubDate>Mon, 13 May 2024 10:33:50 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7c955f7b-5cc9-400b-9789-e8f8f0f24b25</guid><dc:creator>spykid</dc:creator><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Button Style Card Layout</title><link>https://community.appian.com/thread/135227?ContentTypeID=1</link><pubDate>Mon, 13 May 2024 10:33:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:51280e7a-2b50-4ba4-8436-6016dc8c1158</guid><dc:creator>Richard Michaelis</dc:creator><description>&lt;p&gt;i suggest to read the following 4 articles from the documentation&lt;br /&gt;&lt;a id="" href="https://docs.appian.com/suite/help/24.1/Button_Layout.html"&gt;https://docs.appian.com/suite/help/24.1/Button_Layout.html&lt;/a&gt;&lt;br /&gt;&lt;a id="" href="https://docs.appian.com/suite/help/24.1/Button_Array_Layout.html"&gt;https://docs.appian.com/suite/help/24.1/Button_Array_Layout.html&lt;/a&gt;&lt;br /&gt;&lt;a id="" href="https://docs.appian.com/suite/help/24.1/Button_Component.html"&gt;https://docs.appian.com/suite/help/24.1/Button_Component.html&lt;/a&gt;&lt;br /&gt;&lt;a id="" href="https://docs.appian.com/suite/help/24.1/sail/ux-buttons.html"&gt;https://docs.appian.com/suite/help/24.1/sail/ux-buttons.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Button Style Card Layout</title><link>https://community.appian.com/thread/135225?ContentTypeID=1</link><pubDate>Mon, 13 May 2024 10:31:13 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ab7ae0ca-0cc4-404e-9748-ad37f8f0b349</guid><dc:creator>Richard Michaelis</dc:creator><description>&lt;p&gt;Edit: sorry i misread - answer incoming&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Button Style Card Layout</title><link>https://community.appian.com/thread/135224?ContentTypeID=1</link><pubDate>Mon, 13 May 2024 10:06:57 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8eb08be7-49da-40a3-a605-f89920f8165f</guid><dc:creator>spykid</dc:creator><description>&lt;p&gt;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1715594484548v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;How can I create the button design I want without using card layout?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Button Style Card Layout</title><link>https://community.appian.com/thread/135223?ContentTypeID=1</link><pubDate>Mon, 13 May 2024 10:06:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b3d8a1e6-aeff-464a-ae5d-fc6934c62996</guid><dc:creator>spykid</dc:creator><description>&lt;p&gt;&lt;a href="/members/stefanhelzle0001"&gt;Stefan Helzle&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;How can I create the button design I want without using card layout?&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1715594464860v2.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Button Style Card Layout</title><link>https://community.appian.com/thread/135218?ContentTypeID=1</link><pubDate>Mon, 13 May 2024 06:58:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:dccd83b1-bf58-4b0a-aee3-e6bcaf49dd5f</guid><dc:creator>Richard Michaelis</dc:creator><description>&lt;p&gt;stefan said it already. Thats not possible&lt;br /&gt;&lt;br /&gt;you can see the parameter you can set in the appian documentation&lt;br /&gt;e.g.&lt;br /&gt;&lt;a id="" href="https://docs.appian.com/suite/help/24.1/card_layout.html"&gt;https://docs.appian.com/suite/help/24.1/card_layout.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;the only parameter who influences the border are:&lt;br /&gt;&lt;span&gt;&amp;quot;showBorder&amp;quot; :&amp;nbsp; &amp;nbsp; &amp;nbsp; whether the layout has an outer border&lt;br /&gt;&lt;/span&gt;&amp;quot;shape &amp;quot;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;span&gt;Determines the card shape&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Button Style Card Layout</title><link>https://community.appian.com/thread/135215?ContentTypeID=1</link><pubDate>Mon, 13 May 2024 06:44:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0c5feeee-21c1-4fcb-8139-c20d6aacc08f</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Card layouts do not support adjusting the border color.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>