<?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>Is it possible to display link in Paging grid column ?</title><link>https://community.appian.com/discussions/f/general/13422/is-it-possible-to-display-link-in-paging-grid-column</link><description>Can we show link in the column of paging grid along with text.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Is it possible to display link in Paging grid column ?</title><link>https://community.appian.com/thread/60809?ContentTypeID=1</link><pubDate>Thu, 27 Sep 2018 06:53:51 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f9b78650-8d05-4d52-900b-ee7cc1e51262</guid><dc:creator>swarajd0001</dc:creator><description>&lt;p&gt;yes it is possible to show link in the column of the paging grid along with text...&lt;br /&gt; please find the below code ..&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; a!gridField(&lt;br /&gt; totalCount: 1,&lt;br /&gt; columns: {&lt;br /&gt; a!gridTextColumn(&lt;br /&gt; label: &amp;quot;Link&amp;quot;,&lt;br /&gt; data: &amp;quot;Appian Link&amp;quot;,&lt;br /&gt; links:a!safeLink(uri:&amp;quot;&lt;a href="https://www.Appian.com&amp;quot;,label&amp;quot;Link&amp;quot;)"&gt;www.Appian.com&amp;quot;,label:&amp;quot;Link&amp;quot;)&lt;/a&gt;&lt;br /&gt; )&lt;br /&gt; },&lt;br /&gt; value:a!pagingInfo(1,-1),&lt;br /&gt; saveInto: a!pagingInfo(1,-1))&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is it possible to display link in Paging grid column ?</title><link>https://community.appian.com/thread/60803?ContentTypeID=1</link><pubDate>Thu, 27 Sep 2018 05:34:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5d45d8b8-6fa5-49e5-b44b-60abaaaecdbc</guid><dc:creator>Dastagiri Dudekula</dc:creator><description>&lt;p&gt;Paging grid displays read-only text, links, and images in a grid that supports selecting, sorting, and paging.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;  load(
    local!pagingInfo: a!pagingInfo(
      startIndex: 1,
      batchSize: 4,
      sort: a!sortInfo(
        field: &amp;quot;label&amp;quot;,
        ascending: true
      )
    ),
    local!sampleData: {
      type!LabelValue(
        label: &amp;quot;Smith, John&amp;quot;
      ),
      type!LabelValue(
        label: &amp;quot;Johnson, Michael&amp;quot;
      ),
      type!LabelValue(
        label: &amp;quot;Reed, Mary&amp;quot;
      ),
      type!LabelValue(
        label: &amp;quot;Cooper, Angela&amp;quot;
      )
    },
    with(
      local!dataForCurrentPage: todatasubset(
        local!sampleData,
        local!pagingInfo
      ).data,
      a!gridField(
        totalCount: length(
          local!sampleData
        ),
        columns: {
          a!gridTextColumn(
            label: &amp;quot;Name&amp;quot;,
            field: &amp;quot;label&amp;quot;,
            data: local!dataForCurrentPage.label,
            alignment: &amp;quot;LEFT&amp;quot;
          ),
          a!gridTextColumn(
            label: &amp;quot;Open Task&amp;quot;,
            data: {
              &amp;quot;Expense Approval&amp;quot;,
              &amp;quot;Expense Approval&amp;quot;,
              &amp;quot;Timesheet Approval&amp;quot;,
              &amp;quot;Timesheet Approval&amp;quot;
            },
            links: {
              a!processTaskLink(
                task: 1382
              ),
              a!processTaskLink(
                task: 1377
              ),
              a!processTaskLink(
                task: 536870918
              ),
              a!processTaskLink(
                task: 268436948
              )
            },
            alignment: &amp;quot;LEFT&amp;quot;
          )
        },
        value: local!pagingInfo,
        saveInto: local!pagingInfo
      )
    )
  )&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is it possible to display link in Paging grid column ?</title><link>https://community.appian.com/thread/60802?ContentTypeID=1</link><pubDate>Thu, 27 Sep 2018 05:33:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f68706d9-a4b6-409c-8f1d-22f030a4034b</guid><dc:creator>ekanshj</dc:creator><description>Hi &lt;a href="/members/sonamg0001"&gt;sonamg0001&lt;/a&gt;,&lt;br /&gt;
Yes, it is possible to add links in paging grid using the link field of the column.&lt;br /&gt;
&lt;br /&gt;
a!gridField(&lt;br /&gt;
        totalCount: 1,&lt;br /&gt;
        columns: {&lt;br /&gt;
            a!gridTextColumn(&lt;br /&gt;
              label: &amp;quot;Link&amp;quot;,&lt;br /&gt;
              data: &amp;quot;Google Link&amp;quot;,&lt;br /&gt;
              links:a!safeLink(uri:&amp;quot;&lt;a href="https://www.google.com&amp;quot;,label:&amp;quot;Link&amp;quot;)"&gt;www.google.com&amp;quot;,label:&amp;quot;Link&amp;quot;)&lt;/a&gt;&lt;br /&gt;
            )&lt;br /&gt;
        },&lt;br /&gt;
        value:a!pagingInfo(1,-1),&lt;br /&gt;
        saveInto: a!pagingInfo(1,-1))&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is it possible to display link in Paging grid column ?</title><link>https://community.appian.com/thread/60800?ContentTypeID=1</link><pubDate>Thu, 27 Sep 2018 05:26:39 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2d246543-666e-41d0-a127-5bf00f822fb8</guid><dc:creator>deviratnamv</dc:creator><description>Hi sonamg0001,&lt;br /&gt;
 Yes, we can do using paging grid . Once check below link ..&lt;br /&gt;
&lt;br /&gt;
&lt;a href="https://docs.appian.com/suite/help/18.3/Grid_Text_Column_Component.html"&gt;docs.appian.com/.../Grid_Text_Column_Component.html&lt;/a&gt;.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is it possible to display link in Paging grid column ?</title><link>https://community.appian.com/thread/60757?ContentTypeID=1</link><pubDate>Wed, 26 Sep 2018 13:30:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ac4d8c65-1c67-46a3-9862-8cd2e4250078</guid><dc:creator>Rama Thummala</dc:creator><description>&lt;p&gt;Hi &lt;a href="/members/sonamg0001"&gt;sonamg0001&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Yes, it is possible to display links in paging grid.&lt;/p&gt;
&lt;p&gt;Please follow below link for related examples.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.appian.com/suite/help/18.3/Paging_Grid_Component.html"&gt;Paging Grid&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Hope it will help you..!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>