Enable/Disable values in Cascading List through Agile Sdk

Hi,

How to enable or disable values in cascading list in Agile PLM using SDK? 

Thanks

Add Comment
1 Answer(s)

Hello

  Use the IAgileList.setObsolete() method to true for disabling a value

   Here is a snippet

    IAgileList tempAgileList = (IAgileList) agileList.getChild(listItemName); //listItemname is the selection you want to enable/disable
    tempAgileList.setObsolete(true);

 Hope this helps

– Raj

Agile Angel Answered on April 18, 2019.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.