I want manually accept term and condition. Right now it is automatically recorded the agree and disagree on the ironclad dashboard. but I want to manually record this consent after user filled complete sign up form. As per the document there is one JavaScript props _ps but it is not accessible in react js.
If you do not want to use event callback props, the _ps is loaded into the window object for you to access and set event listeners manually. Using the _ps global you should be able to do everything listed in our full documentation on the [PS.js library](https://developer.pactsafe.com/docs/get-to-know-our-javascript-library)
Please let me know the how can i solve this issue?
<PSClickWrap
accessId={IRON_CLAD_ACCESS_ID}
groupKey={IRON_CLAD_GROUP_KEY}
confirmationEmail
displayImmediately={false}
testMode
dynamic
allowDisagreed
signerId={userEmail}
onValid={(args: any) => onValid(args)}
onInvalid={(args: any) => onInValid(args)}
/>
I want manually accept term and condition. Right now it is automatically recorded the agree and disagree on the ironclad dashboard. but I want to manually record this consent after user filled complete sign up form. As per the document there is one JavaScript props
_psbut it is not accessible in react js.If you do not want to use event callback props, the _ps is loaded into the window object for you to access and set event listeners manually. Using the _ps global you should be able to do everything listed in our full documentation on the [PS.js library](https://developer.pactsafe.com/docs/get-to-know-our-javascript-library)Please let me know the how can i solve this issue?