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
how should i get changeRecord2 from the wizard url
Solved! Go to Solution.
Hi @AR_9920456
You need to use nmCommandBean and get selected OID and then get the object from OID
directly in JSP
ArrayList soids = commandBean.getSelectedOidForPopup();
PetrH
Hi @AR_9920456,
changeRecord2 is the link between change task and resulting Items.
could you please be more specific, what exactly is the use case?
Hello @TDT,
I have made a custom wizard in which I am getting changerecord2 soft attribute, the data I am getting is of first row in mvc table not the selected one when I tried to edit.
Hi @AR_9920456,
Do you want to get the information of selected objects list in custom form processor?
Hello @TDT ,
Yes i want selected information in wizard not in form processor, as you can see in below SS it a mvc table builder which hold changeRecord2 data.
there are 2 row and i want the information of selected row in my custom wizard. But i always get first row info even if i select the 2nd row as you can see in below ss.
I want to show the info of selected row in custom wizard, how to achieve that.
Hi @AR_9920456
You need to use nmCommandBean and get selected OID and then get the object from OID
directly in JSP
ArrayList soids = commandBean.getSelectedOidForPopup();
PetrH