<?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>Interface with Read Only Grid only displaying Headers and not the data</title><link>https://community.appian.com/discussions/f/new-to-appian/40140/interface-with-read-only-grid-only-displaying-headers-and-not-the-data</link><description>Hi, 
 I am using Appian Version 25.4, I have created an Interface with Grid in it. Grid is just expected to read data from Record Type and display it on the Grid. But I only see headers on Interface when I am previewing it. What am I doing wrong here</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Interface with Read Only Grid only displaying Headers and not the data</title><link>https://community.appian.com/thread/153320?ContentTypeID=1</link><pubDate>Fri, 30 Jan 2026 09:13:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4fe54359-a42f-4bef-bcc2-7855e8b1a96e</guid><dc:creator>sonalp7242</dc:creator><description>&lt;p&gt;Use a!queryRecordType().data or you can directly call a!recordData() to directly get the record data without .data paramter&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Interface with Read Only Grid only displaying Headers and not the data</title><link>https://community.appian.com/thread/153316?ContentTypeID=1</link><pubDate>Fri, 30 Jan 2026 07:05:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d9db6e69-44ac-479f-a2af-6168882b825c</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;The issue is that a!queryRecordType() returns data subset not data.&lt;br /&gt;Use )&lt;strong&gt;.data&lt;/strong&gt;&amp;nbsp;in line 22&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Interface with Read Only Grid only displaying Headers and not the data</title><link>https://community.appian.com/thread/153315?ContentTypeID=1</link><pubDate>Fri, 30 Jan 2026 06:51:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7eff48c4-1160-4eaa-90a5-45fd15606799</guid><dc:creator>Harsha Sharma</dc:creator><description>&lt;p&gt;You are missing the data index after queryRecordType() code. queryRecordType returns a data subset but we want data in the grid so at the end of the queryRecordType() put data such as queryRecordType().data then check.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Interface with Read Only Grid only displaying Headers and not the data</title><link>https://community.appian.com/thread/153314?ContentTypeID=1</link><pubDate>Fri, 30 Jan 2026 05:04:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a49a6a86-801f-4153-b472-163735fe5040</guid><dc:creator>Yashwanth Akula</dc:creator><description>&lt;p&gt;Hi &lt;a href="/members/maheshg821223"&gt;maheshg821223&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Since you&amp;rsquo;re using &lt;code data-start="105" data-end="124" data-is-only-node=""&gt;queryRecordType()&lt;/code&gt; in a read-only grid,&amp;nbsp;&lt;span&gt;queryRecordType()&lt;/span&gt; returns a &lt;code data-start="159" data-end="171"&gt;DataSubset&lt;/code&gt; (map). Please use the index on it to access only the data.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!gridField(
  label: &amp;quot;Portfolio&amp;quot;,
  labelPosition: &amp;quot;ABOVE&amp;quot;,
  data: a!queryRecordType(
    recordType: &amp;#39;recordType!{730d5dd7-5828-443c-89cf-89b097b856cb}&amp;#39;,
    fields: {},
    pagingInfo: local!pagingInfo
  ).data,
  columns: {}
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Hope it solves your issue.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Interface with Read Only Grid only displaying Headers and not the data</title><link>https://community.appian.com/thread/153313?ContentTypeID=1</link><pubDate>Thu, 29 Jan 2026 23:17:51 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:46a53791-bda3-4751-9a18-d46a311c4bde</guid><dc:creator>maheshg821223</dc:creator><description>&lt;p&gt;Hi Mike,&lt;/p&gt;
&lt;p&gt;Yes, I have tried to put the queryRecordType in an Expression, and I was able to see the data. Please see attached screenshot for my test case.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/62/pastedimage1769728651149v1.jpeg" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Interface with Read Only Grid only displaying Headers and not the data</title><link>https://community.appian.com/thread/153310?ContentTypeID=1</link><pubDate>Thu, 29 Jan 2026 18:14:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:761bad68-e670-43e7-88af-a9ece64378cc</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;Have you ensured that your record type is actually populated with data?&lt;/p&gt;
&lt;p&gt;If you copy out just the &amp;quot;queryRecordType&amp;quot; call and run it from a blank Expression Editor, do you see resulting queried data there?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>