<?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 popup in Paging Grid ?</title><link>https://community.appian.com/discussions/f/general/13423/is-it-possible-to-display-popup-in-paging-grid</link><description>I am displaying details in a paging Grid wherein one of the column holds text of length more than 500. Which is actually making the UI look bad. 
 I want to display the text in a column like 
 
 So when I click on &amp;quot;....&amp;quot; a popup appears which displays</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Is it possible to display popup in Paging Grid ?</title><link>https://community.appian.com/thread/61305?ContentTypeID=1</link><pubDate>Mon, 08 Oct 2018 07:07:36 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0031bdcc-7ed2-44d8-ad10-199fedc6ef6a</guid><dc:creator>ankitab0001</dc:creator><description>Check this : &lt;a href="https://community.appian.com/discussions/f/user-interface/13072/text-to-display-in-mouseovers"&gt;community.appian.com/.../text-to-display-in-mouseovers&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is it possible to display popup in Paging Grid ?</title><link>https://community.appian.com/thread/61304?ContentTypeID=1</link><pubDate>Mon, 08 Oct 2018 07:03:57 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7b94ac49-624b-4454-92d5-755998458206</guid><dc:creator>swarajd0001</dc:creator><description>&lt;p&gt;Hi diptis,&lt;/p&gt;
&lt;p&gt;as ramanjaneyulu said, as of 18.3 we don&amp;#39;t have option in appian to display popup.&lt;/p&gt;
&lt;p&gt;I create a special column in the grid to show long string as caption .... as shown in below picture&amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-discussions-components-files/11/ca.jpg"&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/ca.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;
load(
local!employees: {
        { id: 1, firstName: &amp;quot;Google  Google LLC is an American multinational technology company that specializes in Internet-related services and products, which include online advertising technologies, search engine, cloud computing, software, and hardware&amp;quot; , lastName: &amp;quot;Smith&amp;quot; , department: &amp;quot;Engineering&amp;quot; , title: &amp;quot;Director&amp;quot; , phoneNumber: &amp;quot;555-123-4567&amp;quot; , startDate: today()-360 },
      { id: 2, firstName: &amp;quot;Yahoo   Yahoo! is a web services provider headquartered in Sunnyvale, California and owned by Verizon Communications through Oath Inc.. The original Yahoo! company was founded by Jerry Yang and David Filo in January 1994 and was incorporated on March 2, 1995&amp;quot; , lastName: &amp;quot;Johnson&amp;quot; , department: &amp;quot;Finance&amp;quot; , title: &amp;quot;Analyst&amp;quot; , phoneNumber: &amp;quot;555-987-6543&amp;quot; , startDate: today()-360 },
      { id: 3, firstName: &amp;quot;Facebook Facebook, Inc. is an American online social media and social networking service company based in Menlo Park, California. Its website was launched on February 4, 2004, by Mark Zuckerberg, along with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dustin Moskovitz and Chris Hughes&amp;quot;, lastName: &amp;quot;Reed&amp;quot; , department: &amp;quot;Engineering&amp;quot; , title: &amp;quot;Software Engineer&amp;quot; , phoneNumber: &amp;quot;555-456-0123&amp;quot; , startDate: today()-240 },
  },
 
  
  
  a!gridField(
    
      label: &amp;quot;Employees&amp;quot;,
      totalCount: 5,
      columns: {
        a!gridTextColumn(
          label: &amp;quot;Name&amp;quot;,
          data:   {left(local!employees.firstName,10)},
          alignment: &amp;quot;LEFT&amp;quot;
        ),
        a!gridImageColumn(
          size:&amp;quot;ICON&amp;quot;,
          label: &amp;quot;Info&amp;quot;,
        data:
        a!forEach(
          items: local!employees,
          expression:a!documentImage(
          Document:  &amp;quot;6233&amp;quot;,
          altText: &amp;quot;Info&amp;quot;,
          caption: fv!item.firstName
        )
        )),
        a!gridTextColumn(
          label: &amp;quot;Title&amp;quot;,
          data: {local!employees.department},
          alignment: &amp;quot;LEFT&amp;quot;
        ),
        a!gridTextColumn(
          label: &amp;quot;Department&amp;quot;,
          data: {local!employees.title},
          alignment: &amp;quot;LEFT&amp;quot;
        ),
        
      },
      value: a!pagingInfo(
        startIndex: 1,
        batchSize: 5,
        sort: a!sortInfo(
          field: &amp;quot;name&amp;quot;,
          ascending: true
        )
      )
    )
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks ...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is it possible to display popup in Paging Grid ?</title><link>https://community.appian.com/thread/60767?ContentTypeID=1</link><pubDate>Wed, 26 Sep 2018 13:58:05 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:91f3eb0f-095b-48eb-bfdb-0cae63478c8a</guid><dc:creator>Rama Thummala</dc:creator><description>Hi  ,&lt;br /&gt;
&lt;br /&gt;
As of 18.3 it is not possible to display popup. &lt;br /&gt;
Alternatively, I would suggest to display the complete text when you click on link in separate section(prefer to use boxlayout() for better visibility) at the bottom of the grid.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>