<?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>How to add two layout inside a sideBySideItem</title><link>https://community.appian.com/discussions/f/user-interface/33971/how-to-add-two-layout-inside-a-sidebysideitem</link><description>I started with a CardLayout and have a sideBysideLayout inside it. Inside this SideBySideLayout I have two SideBySideItem. The problem I&amp;#39;m facing is Inside one of this SideBySideItem I want to have two components. SideBySideLayout doesn&amp;#39;t allow any other</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to add two layout inside a sideBySideItem</title><link>https://community.appian.com/thread/129048?ContentTypeID=1</link><pubDate>Tue, 06 Feb 2024 19:50:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:87196c94-a44d-4d86-963f-745f556c112d</guid><dc:creator>Abhay Dalsaniya</dc:creator><description>&lt;p&gt;- For this particular use case, you don&amp;#39;t need sideBySideLayout, the columnLayout will do the job.&lt;/p&gt;
&lt;p&gt;- Have the&amp;nbsp;&lt;span&gt;columnLayout at top level and&amp;nbsp;sideBySideLayout within it if requires.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to add two layout inside a sideBySideItem</title><link>https://community.appian.com/thread/129037?ContentTypeID=1</link><pubDate>Tue, 06 Feb 2024 17:38:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8c740c22-1b0e-4fcf-a6b4-abf34e90a624</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Use columns layouts for the course layout, and side by side layouts for the fine, single row adjustments.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to add two layout inside a sideBySideItem</title><link>https://community.appian.com/thread/129035?ContentTypeID=1</link><pubDate>Tue, 06 Feb 2024 17:15:05 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3cc175b1-8ddf-423b-bef7-4b7e01bc758b</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;{
  a!columnsLayout(
    columns: {
      a!columnLayout(
        contents: {
          a!imageField(
            label: &amp;quot;Image&amp;quot;,
            labelPosition: &amp;quot;COLLAPSED&amp;quot;,
            images: {
              a!documentImage(document: a!EXAMPLE_DOCUMENT_IMAGE())
            },
            size: &amp;quot;MEDIUM&amp;quot;,
            isThumbnail: false,
            style: &amp;quot;STANDARD&amp;quot;
          ),
          a!richTextDisplayField(
            align: &amp;quot;CENTER&amp;quot;,
            labelPosition: &amp;quot;COLLAPSED&amp;quot;,
            value: { a!richTextItem(text: { &amp;quot;Styled Text&amp;quot; }) }
          )
        },
        width: &amp;quot;NARROW_PLUS&amp;quot;
      ),
      a!columnLayout(
        contents: {
          a!paragraphField(
            label: &amp;quot;Paragraph&amp;quot;,
            labelPosition: &amp;quot;ABOVE&amp;quot;,
            saveInto: {},
            refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
            height: &amp;quot;MEDIUM&amp;quot;,
            validations: {}
          )
        }
      )
    }
  )
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to add two layout inside a sideBySideItem</title><link>https://community.appian.com/thread/129034?ContentTypeID=1</link><pubDate>Tue, 06 Feb 2024 17:10:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:28e797e1-33ae-42a6-8df3-3860a60ebcca</guid><dc:creator>Arib</dc:creator><description>&lt;p&gt;Can you please guide me with the layout so that I can align one of the Item on the right and the other two(Img &amp;amp; text) being on top of each other. while keeping these two on the left.&amp;nbsp; If I use the columnsLayout I would be keeping the Image on top of the two items(rich Text component &amp;amp; sideBySideItem).&lt;/p&gt;
&lt;p&gt;while the sideBySideItem on the &amp;#39;right&amp;#39; has a lot of details which should be highlighted.&lt;/p&gt;
&lt;p&gt;Also, this image pretty decent size, I had tried with richTextItem but it becomes too small to be visible.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to add two layout inside a sideBySideItem</title><link>https://community.appian.com/thread/129033?ContentTypeID=1</link><pubDate>Tue, 06 Feb 2024 17:03:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e617d5fa-bae0-43d3-9249-0bde2e23ed77</guid><dc:creator>Konduru Chaitanya</dc:creator><description>&lt;p&gt;Hello&amp;nbsp;&lt;a href="/members/ariba5597"&gt;Arib&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It is not supported to do so in Side By side layout. You will have to use a!columnsLayout() to do so.&lt;br /&gt;Look at these for more ideas on using columns layout.&lt;br /&gt;&lt;br /&gt;&lt;a href="https://docs.appian.com/suite/help/23.4/sail/ux-columns-layout.html"&gt;Sail Design System-UX_Columns_Layout&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: How to add two layout inside a sideBySideItem</title><link>https://community.appian.com/thread/129032?ContentTypeID=1</link><pubDate>Tue, 06 Feb 2024 17:01:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1402f725-01ed-424c-b507-3d50d79fcb78</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;You can&amp;#39;t. You will have to switch to columnsLayout()&amp;nbsp;&lt;/p&gt;
&lt;p&gt;And if your rich image is just a small square-shaped image you want to display, then you can add it in the same richTextDisplayField using a!richTextImage and a!richTextItem. Use char(10) between them to add a new line.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>