<?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>Grid in Appian</title><link>https://community.appian.com/discussions/f/general/34179/grid-in-appian</link><description>Hi All, 
 I have to display the data shown in below screenshot. Is there any grid pattern available to display like that?</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Grid in Appian</title><link>https://community.appian.com/thread/130348?ContentTypeID=1</link><pubDate>Fri, 01 Mar 2024 10:05:47 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0dd05970-3292-4fd2-8518-a1c17b65380f</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Yes and No. Yes you can create something like this but No it can&amp;#39;t be done using a grid. You will have to build a grid like layout using the card layouts.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!expandedIndex,
  a!forEach(
    items: enumerate(10),
    expression: {
      a!cardLayout(
        contents: {
          a!richTextDisplayField(
            labelPosition: &amp;quot;COLLAPSED&amp;quot;,
            value: {
              a!richTextItem(
                text: fv!index
              )
            }
          ),
          a!sectionLayout(
            showWhen: tointeger(local!expandedIndex)=fv!index,
            label: &amp;quot;Transaction History&amp;quot;
          )
        },
        link: a!dynamicLink(
          value: if(tointeger(local!expandedIndex)=fv!index,null,fv!index),
          saveInto: local!expandedIndex
        )
      )
    }
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Grid in Appian</title><link>https://community.appian.com/thread/130346?ContentTypeID=1</link><pubDate>Fri, 01 Mar 2024 09:25:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e58b6a71-0660-402a-aa47-25f10d275104</guid><dc:creator>Rahul009</dc:creator><description>&lt;p&gt;Thanks &lt;a href="/members/harshitb6843"&gt;Harshit Bumb (Appyzie)&lt;/a&gt;&amp;nbsp;,&lt;/p&gt;
&lt;p&gt;I have one other grid design which I am not sure how to build it.&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/pastedimage1709285002945v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Is it possible to have a down arrow at the right of grid row to display meta of the record.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Grid in Appian</title><link>https://community.appian.com/thread/130231?ContentTypeID=1</link><pubDate>Wed, 28 Feb 2024 11:49:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c3a06675-10b7-43be-92ad-a7e52445f8ab</guid><dc:creator>Konduru Chaitanya</dc:creator><description>&lt;p&gt;I would recommend use the 2nd way for your requirement as it would have better readability and understanding for the user. For the 1st Approach you need to have a separate legend on what color is for what as you cannot have both the header and the grid column labels. Only one can be accommodated.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Grid in Appian</title><link>https://community.appian.com/thread/130224?ContentTypeID=1</link><pubDate>Wed, 28 Feb 2024 10:37:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3bb4baea-7c6a-45b0-b78a-c87495da2387</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;You can&amp;#39;t display the header groups (eg. Team Member, Overall Competency). That is what we&amp;#39;re using colors for.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For displaying headers, you can simply use the &amp;#39;label&amp;#39; property in a!gridColumn()&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Grid in Appian</title><link>https://community.appian.com/thread/130223?ContentTypeID=1</link><pubDate>Wed, 28 Feb 2024 10:35:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d8044bc4-3176-4f59-bd05-4438ec455d14</guid><dc:creator>Rahul009</dc:creator><description>&lt;p&gt;&lt;a href="/members/harshitb6843"&gt;Harshit Bumb (Appyzie)&lt;/a&gt;&amp;nbsp;, If we go by 1st way, how to display the headers in the grid.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Grid in Appian</title><link>https://community.appian.com/thread/130218?ContentTypeID=1</link><pubDate>Wed, 28 Feb 2024 10:03:39 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:dd76531a-9387-4a6c-84c0-a7326ac773fe</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;You can do it in two ways.&amp;nbsp;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Simple way - Just add all of it in the same grid and use the background color of the cells to create visual groups. You can then define the label of these colors in the legends below the grid.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Add 4 grids adjacent to each other, with every row having the same height, and then you will be able to achieve this. (This adds a lot of configurations that you will manually have to adjust and control to ensure that the s&lt;span&gt;ymmetry&lt;/span&gt; never breaks.&amp;nbsp;&lt;/li&gt;
&lt;/ol&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>