Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
Not sure what I am doing wrong here but stumped on how to get the value to persist.
I dont see the value in any of the method parameters (meaning if I select "No" in the drop down then nothing shows up in any of the method parametes aka BinaryLink, MethodContext, etc.)
Not sure how this customization is supposed to work and the limited kb for this on ptc windchill help is not very helpful.
Here is my github code.
also I was trying to follow along to this :
Hi @NT_10748259
Every information is stored in a NmCommandBean object
in a processor, where is method doOperation or preProcess method contains that object
OOTB doOperation is in EditChangeItemFormProcessor.class
here is example how the information from wizard is stored in the NmCommandBean
example attribute KLR
in the object from the processor code>
Your combo box is in the comboBoxParameter
example how to get comboBox
Map var10 = var1.getComboBox();
PetrH