<?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>Triggering Additional Dropdowns</title><link>https://community.appian.com/discussions/f/general/17463/triggering-additional-dropdowns</link><description>Hi. I have an interface with a dropdown. I want to configure this dropdown so that selecting certain items within the dropdown will trigger an additional dropdown. Is there a way to configure my dropdown so that selections cause another dropdown to appear</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Triggering Additional Dropdowns</title><link>https://community.appian.com/thread/68859?ContentTypeID=1</link><pubDate>Thu, 15 Aug 2019 17:27:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d70120f9-8c62-4664-8693-a6d2b824a945</guid><dc:creator>benjamins0003</dc:creator><description>&lt;p&gt;Thank you, Robert, this works perfectly.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Triggering Additional Dropdowns</title><link>https://community.appian.com/thread/68857?ContentTypeID=1</link><pubDate>Thu, 15 Aug 2019 16:29:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ef9ec318-4c63-4f9a-a587-9e54dd64bbc5</guid><dc:creator>Robert Shankin</dc:creator><description>&lt;p&gt;Here is a working example of how to do this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;load(
  local!box1,
  local!box2,
  with(
{
  a!boxLayout(
    label: &amp;quot;dropdowns&amp;quot;,
    contents: {
      a!dropdownField(
        label: &amp;quot;box1&amp;quot;,
        labelPosition: &amp;quot;ABOVE&amp;quot;,
        placeholderLabel: &amp;quot;--- Select a Value ---&amp;quot;,
        choiceLabels: {&amp;quot;Option 1&amp;quot;, &amp;quot;Option 2&amp;quot;},
        choiceValues: {1, 2},
        saveInto: {local!box1},
        value: local!box1,
        validations: {},
        instructions: &amp;quot;select a value to show another box&amp;quot;
      ),
      a!dropdownField(
        label: &amp;quot;box2&amp;quot;,
        labelPosition: &amp;quot;ABOVE&amp;quot;,
        placeholderLabel: &amp;quot;--- Select a Value ---&amp;quot;,
        choiceLabels: {&amp;quot;Option 1&amp;quot;, &amp;quot;Option 2&amp;quot;},
        choiceValues: {1, 2},
        saveInto: {},
        validations: {},
        showWhen: not(isnull(local!box1))
      )
    },
    style: &amp;quot;STANDARD&amp;quot;,
    marginBelow: &amp;quot;STANDARD&amp;quot;
  )
}
))&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>