<?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>Issues with Dropdowns</title><link>https://community.appian.com/discussions/f/user-interface/34784/issues-with-dropdowns</link><description>I have a few dropdowns in my interface, however when selecting the dropdown, choices are being constrained by the UI component they are housed in. This is leading to dropdown options being unable to be selected. How can I have the dropdown choices overflow</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Issues with Dropdowns</title><link>https://community.appian.com/thread/134346?ContentTypeID=1</link><pubDate>Fri, 26 Apr 2024 12:39:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d1084ae3-0181-4740-8800-7b189dffbb75</guid><dc:creator>Mike Schmitt</dc:creator><description>[quote userid="137801" url="~/discussions/f/user-interface/34784/issues-with-dropdowns/134331"]try to deploy that hotfix.[/quote]
&lt;p&gt;FYI, for cloud customers, generally a site restart will automatically apply the latest hotfix, which is probably why Appian Support is suggesting a restart.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issues with Dropdowns</title><link>https://community.appian.com/thread/134331?ContentTypeID=1</link><pubDate>Fri, 26 Apr 2024 10:24:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:40f8d842-8b77-4834-aab8-977c73c11206</guid><dc:creator>Ranjith shanmugam</dc:creator><description>&lt;p&gt;Hello &lt;a href="/members/brianp3674"&gt;bpurcell&lt;/a&gt;&amp;nbsp;,&lt;/p&gt;
&lt;p&gt;This issue is fixed with Appian hotfix try to deploy that hotfix.&lt;/p&gt;
&lt;p&gt;we also faced the same,&amp;nbsp;After hotfix working fine.&lt;/p&gt;
&lt;p&gt;Hotfix :&amp;nbsp;24.1.236.0&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issues with Dropdowns</title><link>https://community.appian.com/thread/134294?ContentTypeID=1</link><pubDate>Thu, 25 Apr 2024 19:02:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:512fce69-de22-4002-b1e6-d312b4978e30</guid><dc:creator>bpurcell</dc:creator><description>&lt;p&gt;I wanted to reply to this because I received info from Appian support -&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Hi Brian, &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;The behavior reported appears to be a known issue in which the choice values of a dropdown component would get cut off by the containing layout. This was fixed in 24.1.236.0, so I&amp;#39;d like to try restarting the environment to see if this fixes the issue. Could you provide a 2-hour maintenance window for us to restart the site and apply the hotfix? &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best, &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Lyann&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Final Edit: The update did fix this issue.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issues with Dropdowns</title><link>https://community.appian.com/thread/134293?ContentTypeID=1</link><pubDate>Thu, 25 Apr 2024 18:43:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4dca1504-b483-4666-a718-36a6dab5270e</guid><dc:creator>bpurcell</dc:creator><description>&lt;p&gt;Below is the code for the a!cardLayout. It is close to 400 lines, so apologies for the length.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!cardLayout(
  contents: {
    a!columnsLayout(
      columns: {
        a!columnLayout(
          contents: {
            a!horizontalLine(),
            a!sideBySideLayout(
              items: {
                a!sideBySideItem(
                  item: a!richTextDisplayField(
                    labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                    value: { a!richTextItem(text: { &amp;quot;    &amp;quot; }) }
                  ),
                  width: &amp;quot;MINIMIZE&amp;quot;
                ),
                a!sideBySideItem(
                  item: a!dropdownField(
                    choiceLabels: {
                      &amp;quot;All&amp;quot;,
                      &amp;quot;7 Days&amp;quot;,
                      &amp;quot;30 Days&amp;quot;,
                      &amp;quot;90 Days&amp;quot;,
                      &amp;quot;Custom&amp;quot;
                    },
                    choiceValues: {
                      &amp;quot;All&amp;quot;,
                      &amp;quot;7 Days&amp;quot;,
                      &amp;quot;30 Days&amp;quot;,
                      &amp;quot;90 Days&amp;quot;,
                      &amp;quot;Custom&amp;quot;
                    },
                    label: &amp;quot;Time Period&amp;quot;,
                    labelPosition: &amp;quot;ABOVE&amp;quot;,
                    value: if(
                      a!isNullOrEmpty(local!defaulttimeperiod),
                      local!timeperiod,
                      local!defaulttimeperiod
                    ),
                    saveInto: {
                      local!defaulttimeperiod,
                      a!save(
                        if(
                          a!isNullOrEmpty(local!defaulttimeperiod),
                          local!timeperiod,
                          local!defaulttimeperiod
                        ),
                        local!defaulttimeperiod
                      ),
                      a!save(local!Assignedto, null),
                      a!save(local!casesubtype, null),
                      a!save(local!priority, null),
                      a!save(local!search, null),
                      a!save(local!Caseintitated, null),
                      a!save(local!topAllCases, null),
                      /*a!save(local!CreatedBy, null),*/
                      a!save(local!fromdate, null),
                      a!save(local!todate, null)
                    },
                    searchDisplay: &amp;quot;AUTO&amp;quot;,
                    validations: {}
                  ),
                  width: &amp;quot;AUTO&amp;quot;
                )
              }
            ),
            a!sideBySideLayout(
              items: {
                a!sideBySideItem(
                  item: a!richTextDisplayField(
                    labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                    value: { a!richTextItem(text: { &amp;quot;       &amp;quot; }) }
                  ),
                  width: &amp;quot;MINIMIZE&amp;quot;
                ),
                a!sideBySideItem(
                  item: a!dateField(
                    label: &amp;quot;From&amp;quot;,
                    labelPosition: &amp;quot;ABOVE&amp;quot;,
                    value: local!fromdate,
                    saveInto: local!fromdate,
                    showWhen: if(
                      local!defaulttimeperiod = &amp;quot;Custom&amp;quot;,
                      true,
                      false
                    ),
                    required: if(
                      local!defaulttimeperiod = &amp;quot;Custom&amp;quot;,
                      true,
                      false
                    ),
                    validations: {
                      if(
                        todate(local!fromdate) &amp;gt; today(),
                        &amp;quot;From Date must not be greater than today&amp;quot;,
                        if(
                          and(
                            local!defaulttimeperiod = &amp;quot;Custom&amp;quot;,
                            a!isNullOrEmpty(todate(local!todate)),
                            (todate(local!fromdate))
                          ),
                          &amp;quot; To Date is Required&amp;quot;,
                          if(
                            and(
                              todate(local!fromdate) &amp;gt; todate(local!todate),
                              a!isNotNullOrEmpty(todate(local!todate))
                            ),
                            &amp;quot;From Date must not be greater than ToDate&amp;quot;,
                            null
                          )
                        )
                      )
                    }
                  )
                ),
                a!sideBySideItem(
                  item: a!dateField(
                    label: &amp;quot;To&amp;quot;,
                    labelPosition: &amp;quot;ABOVE&amp;quot;,
                    value: local!todate,
                    saveInto: local!todate,
                    showWhen: if(
                      local!defaulttimeperiod = &amp;quot;Custom&amp;quot;,
                      true,
                      false
                    ),
                    required: if(
                      local!defaulttimeperiod = &amp;quot;Custom&amp;quot;,
                      true,
                      false
                    ),
                    validations: {
                      if(
                        todate(local!todate) &amp;gt; today(),
                        &amp;quot;To Date must not be greater than today&amp;quot;,
                        if(
                          and(
                            local!defaulttimeperiod = &amp;quot;Custom&amp;quot;,
                            a!isNullOrEmpty(todate(local!fromdate)),
                            a!isNotNullOrEmpty(todate(local!todate))
                          ),
                          &amp;quot; From Date is Required&amp;quot;,
                          &amp;quot;&amp;quot;
                        )
                      )
                    }
                  )
                )
              },
              spacing: &amp;quot;NONE&amp;quot;
            )
          }
        ),
        a!columnLayout(
          contents: {
            a!horizontalLine(),
            a!sideBySideLayout(
              items: {
                a!sideBySideItem(
                  item: a!richTextDisplayField(
                    labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                    value: { a!richTextItem(text: { &amp;quot;&amp;quot; }) }
                  ),
                  width: &amp;quot;MINIMIZE&amp;quot;
                ),
                a!sideBySideItem(
                  item: a!dropdownField(
                    choiceLabels: {
                      &amp;quot;All&amp;quot;,
                      &amp;quot;Billing&amp;quot;,
                      &amp;quot;Client Service&amp;quot;,
                      &amp;quot;Recon&amp;quot;,
                      &amp;quot;Compliance&amp;quot;
                    },
                    choiceValues: {
                      0,
                      1,
                      2, 
                      5,
                      6
                    },
                    label: &amp;quot;Case Type&amp;quot;,
                    labelPosition: &amp;quot;ABOVE&amp;quot;,
                    value: if(
                      a!isNullOrEmpty(local!defaultCaseType),
                      local!caseType,
                      local!defaultCaseType
                    ),
                    saveInto: {
                      local!defaultCaseType,
                      a!save(
                        if(
                          a!isNullOrEmpty(local!defaultCaseType),
                          local!caseType,
                          local!defaultCaseType
                        ),
                        local!defaultCaseType
                      ),
                      a!save(local!Assignedto, null),
                      a!save(local!casesubtype, null),
                      a!save(local!priority, null),
                      a!save(local!search, null),
                      a!save(local!Caseintitated, null),
                      a!save(local!topAllCases, null),
                      /*a!save(local!CreatedBy, null),*/
                      a!save(local!fromdate, null),
                      a!save(local!todate, null)
                    },
                    searchDisplay: &amp;quot;AUTO&amp;quot;,
                    validations: {}
                  ),
                  width: &amp;quot;AUTO&amp;quot;
                )
              }
            )
          }
        ),
        a!columnLayout(
          contents: {
            a!dateField(
              label: &amp;quot;Date&amp;quot;,
              labelPosition: &amp;quot;ABOVE&amp;quot;,
              saveInto: {},
              /*showWhen:local!defaulttimeperiod=&amp;quot;Year to date&amp;quot;,*/
              validations: {}
            )
          },
          showWhen: local!defaulttimeperiod = &amp;quot;Year to date&amp;quot;
        ),
        a!columnLayout(
          contents: {
            a!horizontalLine(),
            a!dropdownField(
              choiceLabels: {
                a!forEach(
                  items: fn!reject(
                    fn!isnull,
                    {
                      union(
                        local!CreatedByCases,
                        append(local!CreatedByCases,local!CreatedBy)
                      )
                    }
                  ),
                  expression: a!match(
                                value: fv!item,
                                equals: &amp;quot;All&amp;quot;,
                                then: &amp;quot;All&amp;quot;,
                                default: concat(
                                  user(username: fv!item, property: &amp;quot;firstName&amp;quot;),
                                  &amp;quot; &amp;quot;,
                                  user(username: fv!item, property: &amp;quot;lastName&amp;quot;)
                                )
                              )
                )
              },
              choiceValues: {
                fn!reject(
                  fn!isnull,
                  {
                    union(
                      local!CreatedByCases,
                      append(local!CreatedByCases,local!CreatedBy)
                    )
                  }
                )
              },
              label: &amp;quot;Created By&amp;quot;,
              labelPosition: &amp;quot;ABOVE&amp;quot;,
              value: if(
                a!isNullOrEmpty(local!CreatedBy),
                fn!reject(
                  fn!isnull,
                  {
                    union(
                      local!CreatedByCases,
                      local!CreatedByCases
                    )
                  }
                ),
                local!CreatedBy
              ),
              saveInto: {
                local!CreatedBy,
                a!save(
                  if(
                    a!isNullOrEmpty(local!CreatedBy),
                    fn!reject(
                      fn!isnull,
                      {
                        union(
                          local!CreatedByCases,
                          local!CreatedByCases
                        )
                      }
                    ),
                    local!CreatedBy
                  ),
                  local!CreatedBy
                ),
                a!save(local!Assignedto, null),
                a!save(local!casesubtype, null),
                a!save(local!priority, null),
                a!save(local!search, null),
                a!save(local!Caseintitated, null),
                a!save(local!topAllCases, null)
              },
              searchDisplay: &amp;quot;AUTO&amp;quot;,
              validations: {}
            )
          }
        ),
        a!columnLayout(contents: {}, width: &amp;quot;1X&amp;quot;),
        a!columnLayout(
          contents: {
            a!columnsLayout(
              columns: {
                a!columnLayout(contents: {}, width: &amp;quot;1X&amp;quot;),
                a!columnLayout(
                  contents: {
                    a!horizontalLine(weight: &amp;quot;THIN&amp;quot;, color: &amp;quot;#E5EDFF&amp;quot;),
                    a!horizontalLine(weight: &amp;quot;THIN&amp;quot;, color: &amp;quot;#E5EDFF&amp;quot;),
                    a!sideBySideLayout(
                      items: {
                        a!sideBySideItem(
                          item: a!recordActionField_23r3(
                            actions: {
                              a!recordActionItem(
                                action: &amp;#39;recordType!{b58350e3-af30-4f26-b350-464f7238c988}BOP_IntakeForm.actions.{0d7166b5-e7bf-4154-9ed9-b2d28519127c}OpenCase&amp;#39;
                              )
                            },
                            style: &amp;quot;TOOLBAR&amp;quot;,
                            display: &amp;quot;LABEL_AND_ICON&amp;quot;,
                            align: &amp;quot;END&amp;quot;
                          ),
                          width: &amp;quot;AUTO&amp;quot;
                        )
                      }
                    )
                  },
                  width: &amp;quot;6X&amp;quot;
                ),
                a!columnLayout(
                  contents: {
                    a!horizontalLine(weight: &amp;quot;THIN&amp;quot;, color: &amp;quot;#E5EDFF&amp;quot;),
                    a!horizontalLine(weight: &amp;quot;THIN&amp;quot;, color: &amp;quot;#E5EDFF&amp;quot;),
                    a!cardLayout(
                      contents: {
                        a!richTextDisplayField(
                          labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                          value: {
                            a!richTextIcon(icon: &amp;quot;plus&amp;quot;),
                            &amp;quot;&amp;#160;OPEN CASE&amp;quot;
                          },
                          align: &amp;quot;RIGHT&amp;quot;
                        )
                      },
                      link: a!safeLink(
                        label: &amp;quot;&amp;quot;,
                        uri: local!backofficelink,
                        openLinkIn: &amp;quot;SAME_TAB&amp;quot;
                      ),
                      height: &amp;quot;AUTO&amp;quot;,
                      style: &amp;quot;#7C0058&amp;quot;,
                      shape: &amp;quot;SEMI_ROUNDED&amp;quot;,
                      marginBelow: &amp;quot;STANDARD&amp;quot;
                    )
                  },
                  width: &amp;quot;4X&amp;quot;
                )
              }
            )
          }
        )
      }
    )
  },
  height: if(
    local!defaulttimeperiod = &amp;quot;Custom&amp;quot;,
    &amp;quot;SHORT_PLUS&amp;quot;,
    &amp;quot;SHORT&amp;quot;
  ),
  showWhen: if(
    or(
      toboolean(local!ReviewForm) = true,
      toboolean(local!opencase) = true
    ),
    false,
    true
  ),
  style: &amp;quot;#FFE7F8&amp;quot;,
  padding: &amp;quot;NONE&amp;quot;,
  marginAbove: &amp;quot;NONE&amp;quot;,
  marginBelow: &amp;quot;NONE&amp;quot;
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issues with Dropdowns</title><link>https://community.appian.com/thread/134290?ContentTypeID=1</link><pubDate>Thu, 25 Apr 2024 18:20:51 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:631b50c9-c7ce-485d-973c-9df026535796</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;I would really be interested in the code of that interface. The only way I know of to create something like this, is by using a card layout with a fixed height, and then place components inside. I tried this with a drop down which works as expected in Firefox and Chrome.&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/13/pastedimage1714069135703v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;{
  a!cardLayout(
    contents: {
      a!dropdownField(
        choiceLabels: {&amp;quot;Option 1&amp;quot;, &amp;quot;Option 2&amp;quot;, &amp;quot;Option 3&amp;quot;, &amp;quot;Option 4&amp;quot;,
                        &amp;quot;Option 5&amp;quot;, &amp;quot;Option 6&amp;quot;, &amp;quot;Option 7&amp;quot;, &amp;quot;Option 8&amp;quot;,
                        &amp;quot;Option 9&amp;quot;, &amp;quot;Option 10&amp;quot;, &amp;quot;Option 11&amp;quot;, &amp;quot;Option 12&amp;quot;},
        choiceValues: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12},
        label: &amp;quot;Dropdown&amp;quot;,
        labelPosition: &amp;quot;ABOVE&amp;quot;,
        placeholder: &amp;quot;--- Select a Value ---&amp;quot;,
        saveInto: {},
        searchDisplay: &amp;quot;AUTO&amp;quot;,
        validations: {}
      )
    },
    height: &amp;quot;EXTRA_SHORT&amp;quot;,
    style: &amp;quot;TRANSPARENT&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><item><title>RE: Issues with Dropdowns</title><link>https://community.appian.com/thread/134289?ContentTypeID=1</link><pubDate>Thu, 25 Apr 2024 18:09:20 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:be8f8bfc-6c93-4345-b0aa-bc3f3d87d039</guid><dc:creator>bpurcell</dc:creator><description>&lt;p&gt;The first screenshot is in our dev org (Appian version 24.1)&lt;/p&gt;
&lt;p&gt;The second screenshot is in our prod org (Appian version 23.4)&lt;/p&gt;
&lt;p&gt;The issues are happening both live, and in the interface designer. What&amp;#39;s strange is our QA environment also has the issue with the dropdown (version 23.4). Our QA environment and Prod environment code bases are identical as we haven&amp;#39;t updated our QA environment since our last Prod release.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I haven&amp;#39;t been able to find anywhere to denote the Z axis of interface components. Maybe I&amp;#39;m missing something here?&lt;/p&gt;
&lt;p&gt;Also, I have opened a case with Appian support - thank you for that suggestion!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issues with Dropdowns</title><link>https://community.appian.com/thread/134286?ContentTypeID=1</link><pubDate>Thu, 25 Apr 2024 17:13:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f3631dc1-f79d-44b9-b7c1-410a7f13d70b</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;What is the code looking like? Can you share some example to replicate this? In case you report this to Appian, this would be the first thing they are asking for.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issues with Dropdowns</title><link>https://community.appian.com/thread/134283?ContentTypeID=1</link><pubDate>Thu, 25 Apr 2024 16:56:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:602fff8e-b2d3-4b90-8bf9-173ee7bc9fc6</guid><dc:creator>Mike Schmitt</dc:creator><description>[quote userid="229267" url="~/discussions/f/user-interface/34784/issues-with-dropdowns/134282"]the dropdown values&amp;nbsp;get cut off by the component below the component holding the dropdown[/quote]
&lt;p&gt;Is this happening live (i.e. in the actual site / task / etc) or in interface designer, or in both?&amp;nbsp; Is this an up-to-date appian version?&amp;nbsp; How exactly does this differ from the environment where it&amp;#39;s working correctly?&amp;nbsp; Are you saying they&amp;#39;re on different versions?&amp;nbsp; If so, what are the versions in question?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issues with Dropdowns</title><link>https://community.appian.com/thread/134282?ContentTypeID=1</link><pubDate>Thu, 25 Apr 2024 16:41:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6131fd2f-5dd7-484e-9b7d-f470bafdfdf9</guid><dc:creator>bpurcell</dc:creator><description>&lt;p&gt;Apologies - If you look in the below screenshot you can see that the dropdown values&amp;nbsp;get cut off by the component below the component holding the dropdown;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/Screenshot-2024_2D00_04_2D00_25-at-9.35.38_2F20_AM.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Here is how a similar component looks in our prod org acting as expected. Instead of the drop down options filling the component it overflows into the component below. In this example you can see there is no &amp;#39;Custom&amp;#39; option (because it is cut off)&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/Screenshot-2024_2D00_04_2D00_25-at-9.36.01_2F20_AM.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I think this will definitely still be an issue as we update our Prod org because the functionality is working correctly in prod, but not in dev/qa which are both on the newer version.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I tried trying to look where I can set the Z access for the dropdown, but I have not been able to find any solutions.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issues with Dropdowns</title><link>https://community.appian.com/thread/134270?ContentTypeID=1</link><pubDate>Thu, 25 Apr 2024 13:48:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:516567ad-39d8-4d42-8db4-c8c4aa651578</guid><dc:creator>Mike Schmitt</dc:creator><description>[quote userid="274702" url="~/discussions/f/user-interface/34784/issues-with-dropdowns/134268"]The screenshots are a bit small to see the actual issue.[/quote]
&lt;p&gt;yeah particularly the first screenshot, it&amp;#39;s almost impossible to tell what the issue is and what the on-form context is.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issues with Dropdowns</title><link>https://community.appian.com/thread/134268?ContentTypeID=1</link><pubDate>Thu, 25 Apr 2024 13:47:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d03c6bf3-2de6-4aa8-85c2-32df003c00d2</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;The link you shared is not relevant for the Appian base platform.&lt;/p&gt;
&lt;p&gt;The screenshots are a bit small to see the actual issue.&lt;/p&gt;
&lt;p&gt;Then, I think this will only be a temporary issue, as with the PROD being on a lower version, you cannot deploy anymore to it from the higher versions on DEV and QA. So your OPS team will update it soon.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issues with Dropdowns</title><link>https://community.appian.com/thread/134267?ContentTypeID=1</link><pubDate>Thu, 25 Apr 2024 13:38:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1c50afd4-5e8e-4c58-9a48-5bffec36afc3</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;In cases where there&amp;#39;s an issue that&amp;#39;s seemingly internal to the component itself, it may be better to just raise a support case directly with Appian Support, as they&amp;#39;re the only ones who can put things on the radar of the engineering team (much as i might try doing it myself here).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issues with Dropdowns</title><link>https://community.appian.com/thread/134207?ContentTypeID=1</link><pubDate>Thu, 25 Apr 2024 04:16:47 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:cee43ee3-47c5-488b-a449-7e0c728327fd</guid><dc:creator>SRINIVAS M</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;The discrepancy in dropdown behavior between Appian versions 23.4 and 24.1 might be due to updates in the newer version. Check the 24.1 release notes for changes to the dropdown UI component. If necessary, adjust your SAIL code to align with the new version&amp;rsquo;s requirements and test in both environments for consistency. If issues persist, contact Appian Support for version-specific guidance.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;a href="https://docs.appian.com/suite/help/24.1/cw-23.2.1.3/modifying-dropdown-lists.html"&gt;docs.appian.com/.../modifying-dropdown-lists.html&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>