<?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: Parameter Dropdown not working in 3D Part &amp; Assembly Design</title>
    <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Parameter-Dropdown-not-working/m-p/1056822#M142855</link>
    <description>&lt;P&gt;So your request has shifted and you need to add a default value on an enum on one hand and that default value needs to be empty on the other hand.&lt;BR /&gt;&lt;BR /&gt;Try the space character :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;ND_ParamDefArr_K01 = {
{ Name = BOM
  Type = string
  Default = ' '
  Enum = { ' ', 'Normal', 'Reference' }
  Access = full
}
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 03 Mar 2026 09:03:02 GMT</pubDate>
    <dc:creator>remy</dc:creator>
    <dc:date>2026-03-03T09:03:02Z</dc:date>
    <item>
      <title>Parameter Dropdown not working</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Parameter-Dropdown-not-working/m-p/1056733#M142851</link>
      <description>&lt;P&gt;I created a script as shown in the image and saved it as a &lt;STRONG&gt;.lst&lt;/STRONG&gt; file. I also referenced the same file in &lt;STRONG&gt;config.pro&lt;/STRONG&gt;. However, when I create a new parameter in Creo, the dropdown list does not appear.&lt;/P&gt;&lt;P&gt;Please help me resolve this issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note - I also tried with .txt file instead of .lst&lt;BR /&gt;&lt;BR /&gt;Creo Version -&amp;nbsp;11.0.5.0&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2026 13:28:26 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Parameter-Dropdown-not-working/m-p/1056733#M142851</guid>
      <dc:creator>KS_13238586</dc:creator>
      <dc:date>2026-03-02T13:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter Dropdown not working</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Parameter-Dropdown-not-working/m-p/1056743#M142852</link>
      <description>&lt;P&gt;Create lst file and reference it config.pro&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In parameters dialog select Tools&amp;gt;Update Restriction Definition, Check the box to Convert model non-restricted... and apply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2026 15:11:30 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Parameter-Dropdown-not-working/m-p/1056743#M142852</guid>
      <dc:creator>kdirth</dc:creator>
      <dc:date>2026-03-02T15:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter Dropdown not working</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Parameter-Dropdown-not-working/m-p/1056813#M142853</link>
      <description>&lt;P&gt;Please confirm you went through this exhaustive article :&amp;nbsp;&lt;A href="https://www.ptc.com/en/support/article/CS51011" target="_blank"&gt;https://www.ptc.com/en/support/article/CS51011&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I personally added the block examples and the animations back then so you could re-use them easily.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;by comparison, it seems like you try to create an enum list with a default value.&lt;BR /&gt;In the article, &lt;STRONG&gt;enum&lt;/STRONG&gt; examples don't have a default value.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;First to confirm this assumption, please comment the &lt;STRONG&gt;Default&lt;/STRONG&gt; line or re-use one of the examples and iterate from there.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2026 07:35:24 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Parameter-Dropdown-not-working/m-p/1056813#M142853</guid>
      <dc:creator>remy</dc:creator>
      <dc:date>2026-03-03T07:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter Dropdown not working</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Parameter-Dropdown-not-working/m-p/1056818#M142854</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/245044"&gt;@remy&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;I have checked the article you have shared. I already fixed the issue.&amp;nbsp;&lt;BR /&gt;Currently I am exploring how to add the empty values in enum in restricted Parameters. Please see the below from my lst file.&amp;nbsp; Can you please help me on this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ND_ParamDefArr_K01 = {&lt;BR /&gt;{ Name = BOM&lt;BR /&gt;&amp;nbsp; Type = string&lt;BR /&gt;&amp;nbsp; Default = ''&lt;BR /&gt;&amp;nbsp; Enum = { '', 'Normal', 'Reference' }&lt;BR /&gt;&amp;nbsp; Access = full&lt;BR /&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;As far as I understand, we cannot assign &lt;FONT face="Menlo, Monaco, Consolas, Courier New, monospace" color="#c7254e"&gt;&lt;SPAN&gt;null&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;values to an enum. Is there any alternative way to achieve this?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2026 08:19:41 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Parameter-Dropdown-not-working/m-p/1056818#M142854</guid>
      <dc:creator>KS_13238586</dc:creator>
      <dc:date>2026-03-03T08:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter Dropdown not working</title>
      <link>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Parameter-Dropdown-not-working/m-p/1056822#M142855</link>
      <description>&lt;P&gt;So your request has shifted and you need to add a default value on an enum on one hand and that default value needs to be empty on the other hand.&lt;BR /&gt;&lt;BR /&gt;Try the space character :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;ND_ParamDefArr_K01 = {
{ Name = BOM
  Type = string
  Default = ' '
  Enum = { ' ', 'Normal', 'Reference' }
  Access = full
}
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2026 09:03:02 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/3D-Part-Assembly-Design/Parameter-Dropdown-not-working/m-p/1056822#M142855</guid>
      <dc:creator>remy</dc:creator>
      <dc:date>2026-03-03T09:03:02Z</dc:date>
    </item>
  </channel>
</rss>

