Hi,
Does anyone know of a way to trigger the feedback on mobile app from code?
This is possible in Web Apps using JS ( ECT_JavaScript.showFeedbackBox(window.event); )
The idea is to be able to submit mobile feedback while testing the app in a browser. Is this even possible or does the mobile feedback only work in a mobile device? (Cordova dependent for example)
Cheers,
Hermínio
Hi Hermínio,
Aa far as I know, it is not possible to trigger the feedback from the browser: one of the first things that the feedback block does is to check for cordova.
In the device, you can add the following code in a Javascript node in a Client Action to trigger the feedback:
window.OSAppFeedback.open();
José
José Costa wrote:
As far as I know, it is not possible to trigger the feedback from the browser: one of the first things that the feedback block does is to check for cordova.
Yes, this was what I was guessing at.
I actually went around it creating my own "feedback tool" using Html2Canvas:
https://html2canvas.hertzen.com
Thanks anyway ;)
Cannot read property 'open' of undefined