<?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>Columns Layout features in 17.2</title><link>https://community.appian.com/discussions/f/user-interface/10536/columns-layout-features-in-17-2</link><description>Hi All, 
 In the image below, we have a screen like the first image, where 
 1.the first column is having all the links from link 1 to link 11, on which when we click on the link, we will be getting a screen next to those links in other colum 
 2. Upon</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Columns Layout features in 17.2</title><link>https://community.appian.com/thread/46097?ContentTypeID=1</link><pubDate>Tue, 13 Jun 2017 12:03:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3d972257-2265-44ca-98c2-debf28e34c40</guid><dc:creator>harshav</dc:creator><description>Agreed :) and THank you :)&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Columns Layout features in 17.2</title><link>https://community.appian.com/thread/46096?ContentTypeID=1</link><pubDate>Tue, 13 Jun 2017 11:53:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:181eb68f-7e4d-4864-9c71-b895e7816431</guid><dc:creator>aloks0189</dc:creator><description>I think we cannot do anything to that space, because when we use columnsLayout() then each column of them shares the equal space. However 17.2 UI is far better than the look and feel what we had til 17.1 v.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Columns Layout features in 17.2</title><link>https://community.appian.com/thread/46095?ContentTypeID=1</link><pubDate>Tue, 13 Jun 2017 10:29:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:82938d19-59a0-4f5c-8f9e-64dfdd7639d3</guid><dc:creator>harshav</dc:creator><description>It is not the concept of working out Alok,i can easily place the grid in place of the link but it is not looking good in the real time for me. it is only that I am thinking about the space which comes into picture, what I understood is the space will be there and the look and feel is not coming good for me&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Columns Layout features in 17.2</title><link>https://community.appian.com/thread/46094?ContentTypeID=1</link><pubDate>Tue, 13 Jun 2017 10:27:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5c10c95f-f660-415e-9e72-2e8d3ef86c9e</guid><dc:creator>aloks0189</dc:creator><description>Why don&amp;#39;t you replacing the Link with Grid in above code? I think that should work out&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Columns Layout features in 17.2</title><link>https://community.appian.com/thread/46093?ContentTypeID=1</link><pubDate>Tue, 13 Jun 2017 09:57:10 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:08e3eb17-004c-47f8-8d5d-28911e650120</guid><dc:creator>harshav</dc:creator><description>Thanks for the reply alok and that was great but what I was expecting is not this, we already tried this like calling the grid down of the links, but I am having the links in the full page of the form so when I call the grid down of those links it is looking odd, it would be perfect if we can get that grid in the place of &amp;quot;Click to show grid and further sections&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Thanks for the code any ways :)&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Columns Layout features in 17.2</title><link>https://community.appian.com/thread/46092?ContentTypeID=1</link><pubDate>Tue, 13 Jun 2017 07:59:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f24947c2-482d-45b3-aac7-d5be01805111</guid><dc:creator>aloks0189</dc:creator><description>&lt;p&gt;if i understood your design idea properly, then i think this might work for you.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;load(
  local!grid: false(),
  local!secondLink: false(),
  local!items: {
    {
      &amp;quot;fName&amp;quot;: &amp;quot;A&amp;quot;,
      &amp;quot;lName&amp;quot;: &amp;quot;A1&amp;quot;
    },
    {
      &amp;quot;fName&amp;quot;: &amp;quot;B&amp;quot;,
      &amp;quot;lName&amp;quot;: &amp;quot;B1&amp;quot;
    }
  },
  a!formLayout(
    label: &amp;quot;Demo Form&amp;quot;,
    contents: {
      a!sectionLayout(
        contents: {
          a!columnsLayout(
            columns: {
              a!columnLayout(
                contents: {
                  a!columnsLayout(
                    columns: {
                      a!columnLayout(
                        contents: {
                          a!linkField(
                            links: a!dynamicLink(
                              label: &amp;quot;Link1&amp;quot;,
                              value: true(),
                              saveInto: local!secondLink
                            )
                          ),
                          a!linkField(
                            links: a!dynamicLink(
                              label: &amp;quot;Link2&amp;quot;,
                              value: true(),
                              saveInto: local!secondLink
                            )
                          ),
                          a!linkField(
                            links: a!dynamicLink(
                              label: &amp;quot;Link3&amp;quot;,
                              value: true(),
                              saveInto: local!secondLink
                            )
                          ),
                          a!linkField(
                            links: a!dynamicLink(
                              label: &amp;quot;Link4&amp;quot;,
                              value: true(),
                              saveInto: local!secondLink
                            )
                          )
                        }
                      ),
                      a!columnLayout(
                        contents: {
                          a!linkField(
                            links: a!dynamicLink(
                              label: &amp;quot;Click to Show grid and Further Sections&amp;quot;,
                              value: true(),
                              saveInto: local!grid
                            )
                          )
                        },
                        showWhen: local!secondLink
                      ),
                      a!columnLayout(
                        contents: {
                          a!textField(
                            label: &amp;quot;Some Other Stuff&amp;quot;
                          )
                        },
                        showWhen: local!secondLink
                      )
                    }
                  )
                }
              )
            }
          )
        }
      ),
      a!sectionLayout(
        contents: {
          a!columnsLayout(
            columns: {
              a!columnLayout(
                    contents: {
                      a!gridLayout(
                        headerCells: {
                          a!gridLayoutHeaderCell(label: &amp;quot;First Name&amp;quot;),
                          a!gridLayoutHeaderCell(label: &amp;quot;Last Name&amp;quot;)
                        },
                        rows: a!forEach(
                          items: local!items,
                          expression: a!gridRowLayout(
                            contents: {
                              a!textField(
                                value: fv!item.fName
                              ),
                              a!textField(
                                value: fv!item.lName
                              )
                            }
                          )
                        )
                      )
                    },
                    showWhen: local!grid
                  )
            }
          )
        }
      ),
      a!sectionLayout(
        label: &amp;quot;My Section&amp;quot;,
        contents: {
          a!columnsLayout(
            columns: {
              a!columnLayout(
                contents: {
                  a!textField(
                    label: &amp;quot;First Column&amp;quot;
                  )
                }
              ),
              a!columnLayout(
                contents: {
                  a!textField(
                    label: &amp;quot;First Column&amp;quot;
                  )
                }
              )
            }
          )
        },
        showWhen: local!grid
      )
    }
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Columns Layout features in 17.2</title><link>https://community.appian.com/thread/46066?ContentTypeID=1</link><pubDate>Mon, 12 Jun 2017 13:26:40 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c50c6901-af1b-47f7-9454-1d91d62c57dd</guid><dc:creator>aloks0189</dc:creator><description>Can you attach the code so that it will be easy to debug&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Columns Layout features in 17.2</title><link>https://community.appian.com/thread/46062?ContentTypeID=1</link><pubDate>Mon, 12 Jun 2017 13:01:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ef334cf7-9b84-4590-955d-9bf3f9c9daf0</guid><dc:creator>harshav</dc:creator><description>Hi Alok, we have tried using it, but what is exactly happening is , when I wrote a columnslayout and in which one column layout contains the links,&lt;br /&gt;
and the second column contains the remaining stuff &lt;br /&gt;
Due to which the section inside the second column layout and the grid are looking very small and the scroll bar is popping up which is making a space issues.&lt;br /&gt;
&lt;br /&gt;
Can we design it without having any space issue.?&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Columns Layout features in 17.2</title><link>https://community.appian.com/thread/46049?ContentTypeID=1</link><pubDate>Mon, 12 Jun 2017 07:01:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a691860a-6121-4de3-8565-bd19e03815e6</guid><dc:creator>aloks0189</dc:creator><description>Here you need to use a!columnsLayout() as well as a!columnLayout() in an efficient way. yes we can achieve this by calling multiple a!columnLayout() inside a!columnsLayout() where again the a!columnLayout() will contain the a!columnsLayout() as it&amp;#39;s contents{}.&lt;br /&gt;
&lt;br /&gt;
If you can prepare an interface and attach here, that will be easy to convert as per your desired one.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>