Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X
Hi,
We have a requirement to set an attribute of a WTPart through some conditions while persisting.
I could able to extend the form processor and can set the new value but unable to update the Key Value of NmCommandBean.
Any insights?
Thanks,
Niranjan M
Solved! Go to Solution.
Hi Prabhash,
My requirement is to update a soft attribute "XX" of a WTPart while persisting based on the conditions like if number starts with PK then the attribute XX value should set to Phantom etc.
So I thought of changing nmcommandbean by updating the value against the key XX and couldn't achieve this.
As you said there is no need to modify nmcommandbean object, I updated WTPart from ObjectBean by extending doOperation method of FormProcessor and now its working as expected.
Thanks,
Niranjan M
Hello Niranjan,
There will be no need to modify the nmcommandbean object.Just try to find out appropriate method to override in your form processor.
If you could elaborate your problem statement in detail, may be I will be able to give you some more info.
Hi Prabhash,
My requirement is to update a soft attribute "XX" of a WTPart while persisting based on the conditions like if number starts with PK then the attribute XX value should set to Phantom etc.
So I thought of changing nmcommandbean by updating the value against the key XX and couldn't achieve this.
As you said there is no need to modify nmcommandbean object, I updated WTPart from ObjectBean by extending doOperation method of FormProcessor and now its working as expected.
Thanks,
Niranjan M
Good to know that you found the solution!