Be able to hide/skip the ‘view interaction’ screen.
We want to use the JavaScript SDK in our webviews in order to make our own input fields for the app. However, we cannot use it right now, because the ‘View Interaction’ screen pops up. Is there a way to skip that and directly send the params to the parametrization of viktor without having to press ‘Apply’?
Hi Marlies,
We are almost finished with this: it will be released next week!
Hi all!
It is now possible to skip the confirmation modal, such that the parameters are immediately send to the parametrization. You can do this by adding an extra argument (skipConfirmation
, which is false by default) to in the sendParams
function:
...
function sendName() {
viktorSdk.sendParams({
hello: "VIKTOR"
}, true);
}
...
This has also been added to the docs.
@marliesbuijs
1 Like
Feel free to share if you have cool use cases of this!