<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Passing HubDB Multi-selection select options into Module Field Choice option in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591213#M27725</link>
    <description>&lt;P&gt;No, I'm not sure how to provide that; it won't let me attach&lt;/P&gt;</description>
    <pubDate>Wed, 09 Mar 2022 16:05:51 GMT</pubDate>
    <dc:creator>EPloehn</dc:creator>
    <dc:date>2022-03-09T16:05:51Z</dc:date>
    <item>
      <title>Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/386034#M19542</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure if this is possible. I have a HubDB set up that has a Multi-select Field Column (category).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My idea is to build a module I can add to individual pages. In this module, I have a choice field that has the same options as what's in the HubDB Multi-select column. When I make a selection, the module will only populate with the selected category.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way for the Choice option in Design Tool to automatically populate with the available Select Options of the Multi-select column in the HubDB?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or would I need to manually populate this myself?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2020 14:55:10 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/386034#M19542</guid>
      <dc:creator>pm8rsh88</dc:creator>
      <dc:date>2020-11-12T14:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/386064#M19544</link>
      <description>&lt;P&gt;Ultimately what I'm trying to do is whatever I select in the drop-down on the module is what is pulled through in the page.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe something along the lines of:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{% for row in hubdb_table_rows(module.faq_table, '&amp;amp;orderBy=order') %}
{% if row.category_select.id == module.choice_field %} 
			
      &amp;lt;div class="shadow"&amp;gt;
        &amp;lt;div class="acc-btn" data="img{{loop.index}}"&amp;gt;
          &amp;lt;h3 {% if loop.index == 1 %} class="selected" {% endif %}&amp;gt;&amp;lt;span&amp;gt;{{ row.title }}&amp;lt;/span&amp;gt;
            &amp;lt;img class="plus" src="https://cdn2.hubspot.net/hubfs/4351639/2019/assets-may-2019/plus-bold.svg" alt="plus symbol"&amp;gt;
            &amp;lt;img class="minus" src="https://cdn2.hubspot.net/hubfs/4351639/2019/assets-may-2019/minus-bold.svg" alt="minus symbol"&amp;gt;
          &amp;lt;/h3&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="acc-content {% if loop.index == 1 %} open {% endif %}"&amp;gt;
          &amp;lt;div class="acc-content-inner"&amp;gt;
            {{ row.content }}
          &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
			{% endif %}
      {% endfor %}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2020 15:43:37 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/386064#M19544</guid>
      <dc:creator>pm8rsh88</dc:creator>
      <dc:date>2020-11-12T15:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/386191#M19561</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/90514"&gt;@pm8rsh88&lt;/a&gt;&amp;nbsp;No, there is not a way to dynamically fill in a custom module field nor a default field for pulling in HubDB columns. You would need to populate the select options manually or use just a text field for the user to type in the item they want.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2020 21:14:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/386191#M19561</guid>
      <dc:creator>alyssamwilie</dc:creator>
      <dc:date>2020-11-12T21:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/386675#M19606</link>
      <description>&lt;P&gt;Thank you. I didn't think there would be an option for that but worth the ask none the less&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2020 12:04:29 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/386675#M19606</guid>
      <dc:creator>pm8rsh88</dc:creator>
      <dc:date>2020-11-16T12:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/589690#M27687</link>
      <description>&lt;P&gt;How did you get a multi select field?&amp;nbsp; I'm trying to do that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 16:16:03 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/589690#M27687</guid>
      <dc:creator>EPloehn</dc:creator>
      <dc:date>2022-03-07T16:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/589697#M27688</link>
      <description>&lt;P&gt;In the HuDB, create a new column, column type, and the 6th option in the list is Multi-select&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 16:23:29 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/589697#M27688</guid>
      <dc:creator>pm8rsh88</dc:creator>
      <dc:date>2022-03-07T16:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/589941#M27694</link>
      <description>I don't see that option. I only see dropdown select or multiple check boxes&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Mar 2022 21:11:07 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/589941#M27694</guid>
      <dc:creator>EPloehn</dc:creator>
      <dc:date>2022-03-07T21:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/589946#M27695</link>
      <description>&lt;P&gt;I only see single select or multiple check boxes.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 21:23:41 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/589946#M27695</guid>
      <dc:creator>EPloehn</dc:creator>
      <dc:date>2022-03-07T21:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/590269#M27702</link>
      <description>&lt;P&gt;Are you able to post a link to a screenshot of what you're seeing?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 10:09:18 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/590269#M27702</guid>
      <dc:creator>pm8rsh88</dc:creator>
      <dc:date>2022-03-08T10:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591154#M27719</link>
      <description>[cid:image001.png@01D83393.62891630]&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Mar 2022 14:56:07 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591154#M27719</guid>
      <dc:creator>EPloehn</dc:creator>
      <dc:date>2022-03-09T14:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591209#M27724</link>
      <description>&lt;P&gt;That's not showing for me. Do you have a direct link to the image?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 16:03:19 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591209#M27724</guid>
      <dc:creator>pm8rsh88</dc:creator>
      <dc:date>2022-03-09T16:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591213#M27725</link>
      <description>&lt;P&gt;No, I'm not sure how to provide that; it won't let me attach&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 16:05:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591213#M27725</guid>
      <dc:creator>EPloehn</dc:creator>
      <dc:date>2022-03-09T16:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591214#M27726</link>
      <description>&lt;P&gt;You could upload it to your website host, and get a direct link from there?&lt;/P&gt;&lt;P&gt;Alt, you could try hosting it here&lt;/P&gt;&lt;P&gt;&lt;A href="https://imgbb.com/" target="_blank" rel="noopener"&gt;https://imgbb.com/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 16:07:41 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591214#M27726</guid>
      <dc:creator>pm8rsh88</dc:creator>
      <dc:date>2022-03-09T16:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591217#M27727</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="HS.JPG" style="width: 581px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/61254iF3A084B8DE9BDE16/image-size/large?v=v2&amp;amp;px=999" role="button" title="HS.JPG" alt="HS.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 16:07:34 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591217#M27727</guid>
      <dc:creator>EPloehn</dc:creator>
      <dc:date>2022-03-09T16:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591223#M27728</link>
      <description>&lt;P&gt;What page are you on? It doesn't look like HubDB or Design Manager. Are you able to screenshot the entire page?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 16:12:57 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591223#M27728</guid>
      <dc:creator>pm8rsh88</dc:creator>
      <dc:date>2022-03-09T16:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591225#M27730</link>
      <description>It won't let me show entire page as the pop up overrides.&lt;BR /&gt;This is when I go into Contacts --&amp;gt; Actions button --&amp;gt; Edit properties --&amp;gt; Create property - trying to create a new field that allows for a dropdown with multi-select capabilities.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Mar 2022 16:18:07 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591225#M27730</guid>
      <dc:creator>EPloehn</dc:creator>
      <dc:date>2022-03-09T16:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Passing HubDB Multi-selection select options into Module Field Choice option</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591233#M27731</link>
      <description>&lt;P&gt;I see. I've not got much experience in that area, sorry. I have more experience in the HudDB and Design Manager area of Hubspot, but I don't think you can create custom field types for contacts. You might be best trying to create a post under the CRM and Sales Hub community.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 16:29:27 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/591233#M27731</guid>
      <dc:creator>pm8rsh88</dc:creator>
      <dc:date>2022-03-09T16:29:27Z</dc:date>
    </item>
  </channel>
</rss>

