Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
DCT is not getting saved.
snarra
Hi,
We have a DCT with containers based on the selection of the RadioButtons.
The DCT is not getting saved when the "Finish" button is clicked, after the data has been entered into the fields.
The problem might be with the onSave() function in the javascript file 'marketingLit.js'
Please help me in resolving this issue.
I am attaching the code of the 'marketingLit.js' & datacapture.cfg file.
Find more posts tagged with
Comments
nipper
you can try to add an explicit return true to the handleNameDCR function.
snarra
I tried by using an explicit return true(or a return true statement at the end of the handleNameDCR() function) as said by you, but even then its not working.
Could you please suggest any other solution?
Bhargav Coca
Throw an alert before this statement
IWDCRInfo.setDCRName(dcrName);
make sure there is dcrName is right.
Thanks
Reghunath
You did try return true like shown below?
function onSave()
{
handleNameDCR();
return true;
}
snarra
Hi Reghunath,
Yes, its working now after using return true like you have said.
Thanks a lot, as I was having this problem since many days & couldn't figure it out.