<?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>Column Layout, Fix One Column Not Scrollable</title><link>https://community.appian.com/discussions/f/user-interface/19664/column-layout-fix-one-column-not-scrollable</link><description>Customer wants a columns layout and have the right column as a list of links. Left column will have data and it should scroll as the form scrolls. Can we lock the left column as not scrollable?</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Column Layout, Fix One Column Not Scrollable</title><link>https://community.appian.com/thread/131206?ContentTypeID=1</link><pubDate>Thu, 14 Mar 2024 08:48:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d74c4cc2-cc5c-47a0-991a-c0c1956485a7</guid><dc:creator>naveen.h</dc:creator><description>&lt;p&gt;An example of how this could be used&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;{
  a!paneLayout(
    panes: {
      a!pane(
        contents: {
            a!forEach(
                enumerate(12),
                a!textField(
                  label: &amp;quot;Field &amp;quot;&amp;amp;fv!item
                )
            )
        }
      ),
      a!pane(
        contents: {
          a!textField(
            label: &amp;quot;Text&amp;quot;,
            labelPosition: &amp;quot;ABOVE&amp;quot;,
            saveInto: {},
            refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
            validations: {}
          )
        },
        width: &amp;quot;NARROW&amp;quot;
      )
    }
  )
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Column Layout, Fix One Column Not Scrollable</title><link>https://community.appian.com/thread/131205?ContentTypeID=1</link><pubDate>Thu, 14 Mar 2024 08:45:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3bb107c3-bb22-4081-867d-012977107bd3</guid><dc:creator>naveen.h</dc:creator><description>&lt;p&gt;UPDATE: In 24.1, the new &lt;a href="https://docs.appian.com/suite/help/24.1/Pane_Layout.html"&gt;Pane Layout&lt;/a&gt; component is meant to address precisely this kind of a scenario. You can have your data in one pane and the list of links in a second pane. Both will scroll independently if they exceed the size of the screen.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Column Layout, Fix One Column Not Scrollable</title><link>https://community.appian.com/thread/76821?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2020 18:48:41 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2b436ab1-50e4-4d01-8f89-3e524d8863c0</guid><dc:creator>Jake</dc:creator><description>&lt;p&gt;This is great!&amp;nbsp; Could use an EXTRA_TALL height.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Column Layout, Fix One Column Not Scrollable</title><link>https://community.appian.com/thread/76820?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2020 18:44:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:fba2362e-9b9c-4fe4-8947-015c29129dbb</guid><dc:creator>Danny Verb</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="java"&gt;{
  a!columnsLayout(
    columns: {
      a!columnLayout(
        contents: {
          a!cardLayout(
            contents: {
              a!forEach(
                enumerate(12),
                a!textField(
                  label: &amp;quot;Field &amp;quot;&amp;amp;fv!item
                )
              )
            },
            height: &amp;quot;TALL&amp;quot;,
            style: &amp;quot;NONE&amp;quot;,
            showBorder: false,
            marginBelow: &amp;quot;STANDARD&amp;quot;
          )
        }
      ),
      a!columnLayout(
        contents: {
          a!textField(
            label: &amp;quot;Text&amp;quot;,
            labelPosition: &amp;quot;ABOVE&amp;quot;,
            saveInto: {},
            refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
            validations: {}
          )
        },
        width: &amp;quot;NARROW&amp;quot;
      )
    }
  )
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Column Layout, Fix One Column Not Scrollable</title><link>https://community.appian.com/thread/76819?ContentTypeID=1</link><pubDate>Thu, 01 Oct 2020 18:42:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c29f479c-d7b7-4669-83e5-f7d51d318bca</guid><dc:creator>Danny Verb</dc:creator><description>&lt;p&gt;Using a!cardLayout() with a fixed height will cause the contents to be scrollable. You can also hide the border of the card.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.appian.com/suite/help/20.3/card_layout.html"&gt;docs.appian.com/.../card_layout.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>