<?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>Count of rows under  a read-only grid</title><link>https://community.appian.com/discussions/f/user-interface/24721/count-of-rows-under-a-read-only-grid</link><description>Hi all, 
 I have a read only grid with pagesize as 20. I could see the number of rows populating below the grid is not consistent. It appears sometimes and sometimes it doesn&amp;#39;t. I have attached a screenshot for reference, you can see in the above grid</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Count of rows under  a read-only grid</title><link>https://community.appian.com/thread/95583?ContentTypeID=1</link><pubDate>Fri, 27 May 2022 04:33:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4ed8d786-51e8-40ea-9ed0-3ce55edf81e2</guid><dc:creator>Saahil Mulla</dc:creator><description>&lt;p&gt;Thank you Mike for clearing this &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;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Count of rows under  a read-only grid</title><link>https://community.appian.com/thread/95575?ContentTypeID=1</link><pubDate>Thu, 26 May 2022 17:54:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2735dd0e-0ba9-446a-a47d-d53548f5735a</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;There&amp;#39;s a built-in cutoff.&amp;nbsp; I don&amp;#39;t remember what the exact number is, it&amp;#39;s something right around 5.&amp;nbsp; AFAIK there is no design-side control over this behavior, but it&amp;#39;s very predictable once you know what it is.&lt;/p&gt;
&lt;p&gt;ETA: yes, the boundary is between 4 and 5.&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/13/pastedimage1653587909941v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/13/pastedimage1653587915896v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="java"&gt;a!localVariables(
  local!rows: 5,
  local!data: a!forEach(
    enumerate(local!rows),
    {
      id: fv!index
    }
  ),
  
  a!gridField(
    data: local!data,
    columns: {
      a!gridColumn(
        label: &amp;quot;Row&amp;quot;,
        value: fv!row.id
      )
    }
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>