<?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>Grid is not population on selection of one field</title><link>https://community.appian.com/discussions/f/user-interface/12298/grid-is-not-population-on-selection-of-one-field</link><description>I have one page where i have two filters. One Apple filter is working but another mango filter is working only after selection of apple filter. 
 Both drop down are similar code but why data set is not getting update on selection of mango filter. Same</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Grid is not population on selection of one field</title><link>https://community.appian.com/thread/54486?ContentTypeID=1</link><pubDate>Thu, 26 Apr 2018 13:28:43 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:be5b769d-c856-4945-8ce0-01a4b1b9cf04</guid><dc:creator>prashantm963</dc:creator><description>Please use below code and check if it works using single input&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
a!queryEntity(&lt;br /&gt;
  entity: cons!RAS_MASTER_DATASET_REPORT_V,&lt;br /&gt;
  query: a!query(&lt;br /&gt;
    selection: a!querySelection(&lt;br /&gt;
      columns: {&lt;br /&gt;
        /* Your column selection*/&lt;br /&gt;
        &lt;br /&gt;
      }&lt;br /&gt;
    ),&lt;br /&gt;
    logicalExpression: a!queryLogicalExpression(&lt;br /&gt;
      operator: &amp;quot;AND&amp;quot;,&lt;br /&gt;
      filters: {&lt;br /&gt;
        /* Default Filter*/&lt;br /&gt;
        a!queryFilter(&lt;br /&gt;
          field: &amp;quot;primary Key&amp;quot;,&lt;br /&gt;
          operator: &amp;quot;not null&amp;quot;&lt;br /&gt;
        ),&lt;br /&gt;
        /* Optional Filters*/if(&lt;br /&gt;
          rule!APN_isBlank(&lt;br /&gt;
            ri!selectedApple&lt;br /&gt;
          ),&lt;br /&gt;
          {},&lt;br /&gt;
          a!queryFilter(&lt;br /&gt;
            field: &amp;quot;apple&amp;quot;,&lt;br /&gt;
            operator: &amp;quot;=&amp;quot;,&lt;br /&gt;
            value: ri!selectedApple&lt;br /&gt;
          )&lt;br /&gt;
        ),&lt;br /&gt;
        if(&lt;br /&gt;
          rule!APN_isBlank(&lt;br /&gt;
            ri!selectedMango&lt;br /&gt;
          ),&lt;br /&gt;
          {},&lt;br /&gt;
          a!queryFilter(&lt;br /&gt;
            field: &amp;quot;mango&amp;quot;,&lt;br /&gt;
            operator: &amp;quot;=&amp;quot;,&lt;br /&gt;
            value: ri!selectedMango&lt;br /&gt;
          )&lt;br /&gt;
        )&lt;br /&gt;
      }&lt;br /&gt;
    ),&lt;br /&gt;
    pagingInfo: rule!APN_pagingInfoAll()&lt;br /&gt;
  )&lt;br /&gt;
)&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>