<?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>Issue in card layout</title><link>https://community.appian.com/discussions/f/new-to-appian/25007/issue-in-card-layout</link><description>How to show task in card layout. 
 I don&amp;#39;t know any idea about it.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Issue in card layout</title><link>https://community.appian.com/thread/96847?ContentTypeID=1</link><pubDate>Mon, 27 Jun 2022 12:36:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:abb7b37b-3d5a-4d6d-8e32-208b344b3ebd</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;As per the above code, just put your gridField inside a card layout and you should be done.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue in card layout</title><link>https://community.appian.com/thread/96846?ContentTypeID=1</link><pubDate>Mon, 27 Jun 2022 12:35:43 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:abea14cc-705b-4393-bfc7-cad68f6ff0aa</guid><dc:creator>Richard Michaelis</dc:creator><description>&lt;p&gt;hint:&lt;br /&gt;you can put the task report results directly into the gridfield like you did.&lt;br /&gt;or you are loading it into a local.&lt;br /&gt;kind of like this:&lt;/p&gt;
&lt;pre class="highlight"&gt;&lt;code&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;table class="rouge-table"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class="rouge-gutter gl"&gt;
&lt;pre class="lineno"&gt;1
2
3
4
5
6
&lt;/pre&gt;
&lt;/td&gt;
&lt;td class="rouge-code"&gt;
&lt;pre&gt;&lt;span class="nf"&gt;a!localVariables&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
 &lt;span class="k"&gt;local!report&lt;/span&gt;&lt;span class="ow"&gt;:&lt;/span&gt; &lt;span class="nf"&gt;a!queryProcessAnalytics&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
   &lt;span class="ss"&gt;report:&lt;/span&gt; &lt;span class="no"&gt;cons!AT_MY_TASKS_REPORT&lt;/span&gt;
 &lt;span class="ow"&gt;),&lt;/span&gt;
 &lt;span class="nf"&gt;a!textField&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;&lt;span class="ss"&gt;readOnly:&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt; &lt;span class="ss"&gt;value:&lt;/span&gt; &lt;span class="k"&gt;local!report&lt;/span&gt;&lt;span class="ow"&gt;)&lt;/span&gt;
&lt;span class="ow"&gt;)&lt;/span&gt;&lt;/pre&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;pre class="highlight"&gt;Then you can exchange the textfield with a card layout and use textfields&lt;/pre&gt;
&lt;pre class="highlight"&gt;&lt;code&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;code&gt;&lt;/code&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue in card layout</title><link>https://community.appian.com/thread/96843?ContentTypeID=1</link><pubDate>Mon, 27 Jun 2022 12:30:20 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:65359995-d2de-4e0d-bc9c-a5fedca08fd8</guid><dc:creator>Sunil</dc:creator><description>&lt;p&gt;Ya thats my need&amp;nbsp;&lt;br /&gt;&lt;br /&gt;I have created task report and now I want to show report data in card layout.&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!statuses:{
    &amp;quot;Assigned&amp;quot;,
    &amp;quot;Accepted&amp;quot;,
    &amp;quot;Delivered&amp;quot;,
    &amp;quot;In transit&amp;quot;,
  },
  filterValue:null,
  a!sectionLayout(
    contents: {
      a!dropdownField(
        label: &amp;quot;Status&amp;quot; ,
        placeholder: &amp;quot;Select status&amp;quot;,
        choiceLabels: {
          &amp;quot;Assigned&amp;quot;,
          &amp;quot;Accepted&amp;quot;,
          &amp;quot;Delivered&amp;quot;,
          &amp;quot;In transit&amp;quot;},
          choiceValues:enumerate(4) ,
          value: local!filterValue,
          saveInto: local!filterValue


      ),
      a!gridField(
        label: &amp;quot;My Report&amp;quot;,
        data: a!queryProcessAnalytics(
          report: cons!CTA_ShowReport,
          query: a!query(
            filter:a!queryFilter(
              field: &amp;quot;c1&amp;quot;,
              operator: &amp;quot;=&amp;quot;,
              value: local!filterValue,
              applywhen:not( isnull(local!filterValue))
            ), 
            paginginfo:fv!pagingInfo
          )
        ),
        columns: {
          a!gridColumn(
            label: &amp;quot;name&amp;quot;,
            value: a!linkField(
              links: a!processTaskLink(
                label: fv!row.c0,
                task: fv!identifier
              )
            )
          ),
          a!gridColumn(
            label: &amp;quot;process model&amp;quot;,
            value: fv!row.c2
          ),
          a!gridColumn(
            label: &amp;quot;Status&amp;quot;,
            value:if(
              not(isnull(fv!row.c1)),
              index(local!statuses,tointeger(fv!row.c1)+1,&amp;quot;other&amp;quot;),
              &amp;quot;other&amp;quot;
            )
          ),
          a!gridColumn(
            label: &amp;quot;Assigne By&amp;quot;,
            value: a!forEach(
              items: fv!row.c4,
              expression: if(
                runtimetypeof(fv!item)=4,
                user(fv!item,&amp;quot;firstName&amp;quot;),
                group(fv!item,&amp;quot;groupName&amp;quot;)
              )
            )
)
          
        },
        rowHeader: 1
      )
    }

  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue in card layout</title><link>https://community.appian.com/thread/96825?ContentTypeID=1</link><pubDate>Mon, 27 Jun 2022 11:40:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6370b4c5-d9c3-446d-b199-c6863e3fc148</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;You basically need to create&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;A task report&lt;/li&gt;
&lt;li&gt;An expression rule that queries the task report&lt;/li&gt;
&lt;li&gt;An interface to show the queried details inside a card layout!&lt;/li&gt;
&lt;/ol&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue in card layout</title><link>https://community.appian.com/thread/96824?ContentTypeID=1</link><pubDate>Mon, 27 Jun 2022 11:36:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b4355061-89f2-48ca-b434-7c1b1654589d</guid><dc:creator>Richard Michaelis</dc:creator><description>&lt;p&gt;I am not sure if we are in the same page how tasks are working in appian &lt;span class="emoticon" data-url="https://community.appian.com/cfs-file/__key/system/emoji/1f642.svg" title="Slight smile"&gt;&amp;#x1f642;&lt;/span&gt;&lt;br /&gt;-&amp;gt; what do you mean by &amp;quot;showing as task&amp;quot;? meta details?&amp;nbsp;&lt;br /&gt;&lt;br /&gt;That somebody can &amp;quot;work on a task&amp;quot;, for that you need an accordingly maintained interface.&lt;br /&gt;A cardlyout itself, is a interface element which is used in certain ways within an interface.&lt;br /&gt;So this question is really confusing....&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue in card layout</title><link>https://community.appian.com/thread/96823?ContentTypeID=1</link><pubDate>Mon, 27 Jun 2022 11:10:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:cf05e030-541d-4729-8782-bf83b9f6cd33</guid><dc:creator>Sunil</dc:creator><description>&lt;p&gt;I want to show task in interface through card layout which is in tempo.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue in card layout</title><link>https://community.appian.com/thread/96822?ContentTypeID=1</link><pubDate>Mon, 27 Jun 2022 11:09:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b15377f4-a627-4525-9cc6-6f57c310ff97</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Would you please provide some details.&lt;/p&gt;
&lt;p&gt;As a preparation I suggest reading this:&amp;nbsp;&lt;a href="https://codeblog.jonskeet.uk/2012/11/24/stack-overflow-question-checklist/"&gt;codeblog.jonskeet.uk/.../&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue in card layout</title><link>https://community.appian.com/thread/96821?ContentTypeID=1</link><pubDate>Mon, 27 Jun 2022 11:03:50 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:40c08f5a-91b6-43c3-97ab-05be860c2a79</guid><dc:creator>Richard Michaelis</dc:creator><description>&lt;p&gt;What do you mean by &amp;quot;showing a task&amp;quot;?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>