167
Expose more native interaction events
Log In
Activity
Newest
Oldest
V
Vincii Devs
I don't know how one can make an app in 2022 without detecting left/right swipe events.
N
Nicholas Seal
Any updates on this feature?
D
Duber Campos
We are waiting!!!
A
Abderrahim BENMOUSSA
Definitely waiting for this one !
J
Jerry Smith
Harri Sarsa - Do you know if this is done yet? It seems like a lot of things were planned a year ago and then everything sort of stopped. Maybe I’m missing something. Was that about the same time as the SAP transaction? I’ve been investing a lot of time in learning AG and really love the possibilities, but am concerned if this will become an unsupported product. Please advise. Thank you kindly!
Hope to see more great stuff!
P
Peter Likins
could we please have a dropdown list of all javascript DOM events? i figured out a work-around to add event listeners and trigger logic... i went to the page logic canvas and wired a JS node off the 'Page mounted' node, and placed this code inside it. but it isn't working right.
JS SNIPPET:
self.addEventListener("keyup", function(event) {
if (event.keyCode === 13) { //13 is the "Enter" key
console.log('how about dat'); //test message
return 1; } }); //this SHOULD trigger next node in flow
E
Ethan Rodriguez-Torrent
Also really helpful would be a web app event for Page Close / navigate away from app, or some proxy thereof. Needed for databases that are meant to reflect user engagement in real time (e.g. a multiplayer game should know when one player quits/leaves). This is maybe better solved through Websockets API support but I suspect that may be a ways off.