<?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>Multidropdown in editable grid</title><link>https://community.appian.com/discussions/f/user-interface/17545/multidropdown-in-editable-grid</link><description>Multidropdown in editable grid is working weird. I have a multidropdown on a editable grid which is not allowing me select all the values what i want. The list on screen should appear until i click somewhere in the form instead i have to click the DD</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Multidropdown in editable grid</title><link>https://community.appian.com/thread/69140?ContentTypeID=1</link><pubDate>Fri, 30 Aug 2019 19:00:20 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:70b52056-c1ce-402c-adf5-dc198e006ca3</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;cool, good job figuring it out and thanks for confirming.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Multidropdown in editable grid</title><link>https://community.appian.com/thread/69139?ContentTypeID=1</link><pubDate>Fri, 30 Aug 2019 18:59:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:fadad590-3ca8-4f7f-9a3d-f9fb88a04da8</guid><dc:creator>rameshk401070</dc:creator><description>&lt;p&gt;I figured out why this is working weird.&lt;/p&gt;
&lt;p&gt;I just replaced from using index (&lt;strong&gt;local!cdt[index].field&lt;/strong&gt;) to fv!item and it worked as expected.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Multidropdown in editable grid</title><link>https://community.appian.com/thread/69138?ContentTypeID=1</link><pubDate>Fri, 30 Aug 2019 18:39:35 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9a32ab75-541f-4092-98bb-0a326d25f55a</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;What Appian version are you on?&amp;nbsp; I&amp;#39;ve just confirmed that it seems to work expected for me at least in the generic example I was able to write quickly...&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="java"&gt;a!localVariables(
  
  local!colors: {
    &amp;quot;red&amp;quot;,
    &amp;quot;green&amp;quot;,
    &amp;quot;blue&amp;quot;,
    &amp;quot;yellow&amp;quot;,
    &amp;quot;purple&amp;quot;,
    &amp;quot;orange&amp;quot;,
    &amp;quot;brown&amp;quot;,
    &amp;quot;maroon&amp;quot;,
    &amp;quot;navy&amp;quot;,
    &amp;quot;white&amp;quot;
  },
  
  local!rowData: {
    {
      id: 1,
      name: &amp;quot;first&amp;quot;,
      colorSelections: {}
    },
    {
      id: 2,
      name: &amp;quot;second&amp;quot;,
      colorSelections: {&amp;quot;blue&amp;quot;}
    }
  },
  
  a!sectionLayout(
    contents: {
      a!gridLayout(
        headerCells: {
          a!gridLayoutHeaderCell(label: &amp;quot;Name&amp;quot;),
          a!gridLayoutHeaderCell(label: &amp;quot;Color Selections&amp;quot;)
        },
        
        rows: a!forEach(
          local!rowData,
          a!gridRowLayout(
            contents: {
              a!richTextDisplayField(
                value: fv!item.name
              ),
              /*a!textField(*/
                /*value: fv!item.name,*/
                /*saveInto: fv!item.name*/
              /*),*/
              a!multipleDropdownField(
                choiceLabels: local!colors,
                choiceValues: local!colors,
                value: a!forEach(fv!item.colorSelections, tostring(fv!item)),
                saveInto: fv!item.colorSelections,
                placeholder: &amp;quot;--select color(s)--&amp;quot;
              )
            }
          )
        )
      ),
      a!paragraphField(
        label: &amp;quot;DEBUG&amp;quot;,
        value: joinarray(local!rowData, char(10))
      )
    }
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>