<?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>cant add button widget into column component</title><link>https://community.appian.com/discussions/f/user-interface/28290/cant-add-button-widget-into-column-component</link><description>why i cant add a button widget in a column component , it says that the column component cant take button widget</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: cant add button widget into column component</title><link>https://community.appian.com/thread/111012?ContentTypeID=1</link><pubDate>Thu, 13 Apr 2023 09:57:47 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:57b632bd-e64c-417b-bc71-5a776a8579be</guid><dc:creator>romeoraja</dc:creator><description>&lt;p&gt;thanks sir&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: cant add button widget into column component</title><link>https://community.appian.com/thread/110609?ContentTypeID=1</link><pubDate>Wed, 05 Apr 2023 15:07:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9eedc7f0-d101-4fb3-bee9-cb8ef3a814d8</guid><dc:creator>Abhay Dalsaniya</dc:creator><description>&lt;p&gt;You can, but have to use the right level of nesting and using the correct syntax as suggested by other members.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: cant add button widget into column component</title><link>https://community.appian.com/thread/110587?ContentTypeID=1</link><pubDate>Wed, 05 Apr 2023 10:54:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6e60df49-43ac-4e48-94e9-ad7276ceb583</guid><dc:creator>aditya007</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt; a!columnLayout(
   contents: {
     a!buttonArrayLayout(
       buttons: {
         a!buttonWidget(label: &amp;quot;Button Label&amp;quot;)
       }
     )
   }
 )&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: cant add button widget into column component</title><link>https://community.appian.com/thread/110584?ContentTypeID=1</link><pubDate>Wed, 05 Apr 2023 09:50:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2d9a4b96-9c15-4142-aef2-bcb9ba0a0cef</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Please clarify if it is a column layout or a grid column. But in either of the cases, you can! If you face a problem, please attach the code.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: cant add button widget into column component</title><link>https://community.appian.com/thread/110580?ContentTypeID=1</link><pubDate>Wed, 05 Apr 2023 08:09:50 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d7e30a15-652a-49ba-9659-d96e78754d0a</guid><dc:creator>aryan</dc:creator><description>&lt;p&gt;To use a button widget, we have to use either a button layout or a button array layout. Further, if you want to use a button inside a column, you can use the code attached below.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;{
  a!columnsLayout(
    columns: {
      a!columnLayout(
        contents: {
          a!buttonArrayLayout(
            buttons: {
              a!buttonWidget(
                label: &amp;quot;Button&amp;quot;,
                style: &amp;quot;NORMAL&amp;quot;
              )
            },
            align: &amp;quot;START&amp;quot;
          )
          
        }
      ),
      a!columnLayout(
        contents: {}
      )
    }
  )
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: cant add button widget into column component</title><link>https://community.appian.com/thread/110575?ContentTypeID=1</link><pubDate>Wed, 05 Apr 2023 06:26:36 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:eafced57-fcde-41b0-b995-9316e45d748a</guid><dc:creator>Anshu raj singh Ranawat</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;{ a!columnsLayout( columns: { a!columnLayout( contents: { a!buttonArrayLayout( buttons: { a!buttonWidget( label: &amp;quot;Button&amp;quot;, style: &amp;quot;NORMAL&amp;quot; ) }, align: &amp;quot;START&amp;quot; ) } ), a!columnLayout( contents: {} ), a!columnLayout( contents: {} ) } ) }&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>