<?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>Paging in the grid creates the problem</title><link>https://community.appian.com/discussions/f/user-interface/18990/paging-in-the-grid-creates-the-problem</link><description>Hi Everyone , 
 
 When try to keep the batchSize in the paging info , it display that the totalnumber has been exceeded by largest column data 
 My table looks like 
 
 
 
 Type 
 Description 
 Country 
 
 
 Nameabc1 
 abc 
 
 Brasil , India 
 
 
 
 nameabc2</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Paging in the grid creates the problem</title><link>https://community.appian.com/thread/74589?ContentTypeID=1</link><pubDate>Mon, 08 Jun 2020 16:04:14 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2d980d98-b304-4405-8822-b364e3b603ef</guid><dc:creator>Peter Lewis</dc:creator><description>&lt;p&gt;Good point, the tostring() I have in my example above would always concatenate with semicolons, so joinarray() might be better if you want to separate with a comma or something else.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Paging in the grid creates the problem</title><link>https://community.appian.com/thread/74588?ContentTypeID=1</link><pubDate>Mon, 08 Jun 2020 16:00:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:89286a80-bea9-4a74-88f2-293feaec19b0</guid><dc:creator>davel001150</dc:creator><description>&lt;p&gt;Peter Lewis is stating basically exactly what I was about to say.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll just add that you may be able to get by with a simple joinArray() function, which you will want to do with a convenient separator to make sure your list converted to a string still looks like a list of items to your end users.&amp;nbsp; You can add spaces in your separator as well, so you can make the formatting real nice.&lt;/p&gt;
&lt;p&gt;Whichever method is easiest.&amp;nbsp; &amp;nbsp;There&amp;#39;s no wrong answers among the things that make the pink box stop.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Paging in the grid creates the problem</title><link>https://community.appian.com/thread/74578?ContentTypeID=1</link><pubDate>Mon, 08 Jun 2020 15:17:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:01ea10c1-f797-402b-93b9-4bea958c5ee3</guid><dc:creator>Peter Lewis</dc:creator><description>&lt;p&gt;I think the issue is with the country column, since that contains a list of lists. I&amp;#39;d suggest updating your expression to cast the full list of countries for the given row to a single string like this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!gridTextColumn(
  label: resource(&amp;quot;Country&amp;quot;),
  field: &amp;quot;country&amp;quot;,
  data: a!forEach(
    items: local!datasubset,
    expression: tostring(
      index(
        fv!item,
        &amp;quot;country&amp;quot;,
        &amp;quot;&amp;quot;
      )
    )
  )
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;It&amp;#39;s actually&amp;nbsp;decently rare to need many nested a!forEach() functions, so usually there is a simpler solution rather than having to nest all of those together so many times!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>