<?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: Talend Component kit, Issues with @ActiveIf(s). in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245551#M149082</link>
    <description>&lt;P&gt;Hi Anas,&lt;/P&gt;
&lt;P&gt;my&amp;nbsp; studio version is 7.0.1,&lt;/P&gt;
&lt;P&gt;and there are no errors in the log file. the only success i have with&amp;nbsp;@Activeif&amp;nbsp; is when using booleans.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;best regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 25 Oct 2018 12:12:06 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-10-25T12:12:06Z</dc:date>
    <item>
      <title>Talend Component kit, Issues with @ActiveIf(s).</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245547#M149078</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;The&amp;nbsp;@ActiveIf annotation in Talend component kit,&amp;nbsp; is not working if the target value is from a string&amp;nbsp; or a value selected from a drop down list.&amp;nbsp; say i have the following&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;String test="somevalue";

@ActiveIf(target="test", value="{somevalue}")
String testUse;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;testUse will still show up in the UI, the same behaviour occurs&amp;nbsp; if test is a drop list created either with enums or&amp;nbsp;&amp;nbsp;@Proposable.&amp;nbsp; This will however works well in the basic-settings if test were a boolean, and a bit buggy in the advanced settings also if test is a boolean. Are these some known issues or am i doing something wrong here. thanks and&lt;/P&gt;
&lt;P&gt;best regards&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Samba&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 14:45:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245547#M149078</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2026-01-02T14:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit, Issues with @ActiveIf(s).</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245548#M149079</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;it seems you have an error in your above example if not a typo error. the &lt;STRONG&gt;{&lt;/STRONG&gt; need to be outside the&lt;STRONG&gt; " ",&lt;/STRONG&gt; as you can define a list of values.&lt;BR /&gt;Here is how it should be :&lt;/P&gt;&lt;PRE&gt;@Option&lt;BR /&gt;String test="somevalue";
&lt;BR /&gt;@Option
@ActiveIf(target="test", value={"somevalue"})
String testUse;&lt;/PRE&gt;&lt;P&gt;If not a typo issue, please share the full configuration class so that i can help you with it.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 09:38:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245548#M149079</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-25T09:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit, Issues with @ActiveIf(s).</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245549#M149080</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;its not a configuration issue, here is my full configuration&lt;/P&gt;
&lt;P&gt;in service class i have the following.&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;@DynamicValues&lt;/SPAN&gt;(&lt;SPAN&gt;"RESET_LIST"&lt;/SPAN&gt;)&lt;BR /&gt;&lt;SPAN&gt;public &lt;/SPAN&gt;Values &lt;SPAN&gt;getRESETLIST&lt;/SPAN&gt;() {&lt;BR /&gt;    &lt;SPAN&gt;return new &lt;/SPAN&gt;Values(Arrays.&lt;SPAN&gt;asList&lt;/SPAN&gt;(&lt;SPAN&gt;new &lt;/SPAN&gt;Values.Item(&lt;SPAN&gt;"FIRST"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"FIRST"&lt;/SPAN&gt;)&lt;SPAN&gt;, new &lt;/SPAN&gt;Values.Item(&lt;SPAN&gt;"SECOND"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"SECOND"&lt;/SPAN&gt;)&lt;SPAN&gt;, new &lt;/SPAN&gt;Values.Item(&lt;SPAN&gt;"CUSTOM"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"CUSTOM"&lt;/SPAN&gt;)))&lt;SPAN&gt;;&lt;BR /&gt;&lt;/SPAN&gt;}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;And in the Configuration class i have the following&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;@Option&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;@Documentation&lt;/SPAN&gt;(&lt;SPAN&gt;""&lt;/SPAN&gt;)&lt;BR /&gt;&lt;SPAN&gt;@Proposable&lt;/SPAN&gt;(&lt;SPAN&gt;"RESET_LIST"&lt;/SPAN&gt;)&lt;BR /&gt;&lt;SPAN&gt;private &lt;/SPAN&gt;String &lt;SPAN&gt;RESET &lt;/SPAN&gt;= &lt;SPAN&gt;"CUSTOM"&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;@Option&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;@Documentation&lt;/SPAN&gt;(&lt;SPAN&gt;""&lt;/SPAN&gt;)&lt;BR /&gt;&lt;SPAN&gt;@ActiveIf&lt;/SPAN&gt;(&lt;SPAN&gt;target &lt;/SPAN&gt;= &lt;SPAN&gt;"RESET"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;value &lt;/SPAN&gt;= {&lt;SPAN&gt;"CUSTOM"&lt;/SPAN&gt;})&lt;BR /&gt;&lt;SPAN&gt;private &lt;/SPAN&gt;String &lt;SPAN&gt;target&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;this configuration is not working, even if&amp;nbsp; RESET&amp;nbsp; above is not a list, is there something i m doing wrong here?&amp;nbsp; thanks and&lt;/P&gt;
&lt;P&gt;best regards.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 10:52:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245549#M149080</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-25T10:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit, Issues with @ActiveIf(s).</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245550#M149081</link>
      <description>&lt;P&gt;Your configuration is OK. what is your studio version ?&lt;BR /&gt;Also do you have any errors related to that in the studio logs. you can find them in &lt;EM&gt;workspace/.metadata/&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 11:35:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245550#M149081</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-25T11:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit, Issues with @ActiveIf(s).</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245551#M149082</link>
      <description>&lt;P&gt;Hi Anas,&lt;/P&gt;
&lt;P&gt;my&amp;nbsp; studio version is 7.0.1,&lt;/P&gt;
&lt;P&gt;and there are no errors in the log file. the only success i have with&amp;nbsp;@Activeif&amp;nbsp; is when using booleans.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;best regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 12:12:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245551#M149082</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-25T12:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit, Issues with @ActiveIf(s).</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245552#M149083</link>
      <description>&lt;P&gt;ok i will check that in this version.&lt;BR /&gt;&lt;BR /&gt;Is it an option for you, the upgrade of the studio version ?&lt;BR /&gt;We strongly advice the use of the latest version of the studio to develop with the framework. as the project is moving fast.&lt;BR /&gt;you can get the latest release from&amp;nbsp;&lt;A href="https://sourceforge.net/projects/talend-studio/files/Talend%20Open%20Studio/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://sourceforge.net/projects/talend-studio/files/Talend%20Open%20Studio/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;And you can also consult the framework change log from here&amp;nbsp;&lt;A href="https://talend.github.io/component-runtime/main/1.1.2/changelog.html" target="_blank" rel="nofollow noopener noreferrer"&gt;https://talend.github.io/component-runtime/main/1.1.2/changelog.html&lt;/A&gt;&lt;BR /&gt;You will find the latest bugs fixes and the new features list.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 13:51:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245552#M149083</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-25T13:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit, Issues with @ActiveIf(s).</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245553#M149084</link>
      <description>&lt;P&gt;The support of @ActiveIf for @Proposable was added in the version &lt;STRONG&gt;1.1.0&lt;/STRONG&gt;&amp;nbsp;of the framework. This version is shifted with&amp;nbsp;the studio &lt;STRONG&gt;7.1.1&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 14:00:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245553#M149084</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-25T14:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: Talend Component kit, Issues with @ActiveIf(s).</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245554#M149085</link>
      <description>&lt;P&gt;thank you Anas, then i will surely try to upgrade and test.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;best regards&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 20:25:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Component-kit-Issues-with-ActiveIf-s/m-p/2245554#M149085</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-25T20:25:48Z</dc:date>
    </item>
  </channel>
</rss>

