Enable/Disable values in Cascading List through Agile Sdk
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