carrera Posted November 7, 2016 Posted November 7, 2016 Hi, I need to check condition in ExtEvents OnKeydown, currently i assign variable by calling UniApplication.UniSession.AddJS('myVar = 1') how can i update myVar or just calling AddJS Again ? Thank you Quote
Sherzod Posted November 7, 2016 Posted November 7, 2016 Hi, If I understand correctly you, you can use your variable as below: 1. On the "client side" YourObj.myVar = 1; 2. On the "client side" uniVars.myVar = 1; how can i update myVar or just calling AddJS Again ? if you want to update from the server side - Yes. Quote
shawdown Posted March 12, 2019 Posted March 12, 2019 I have a similar problem. In the onCreate of my form I create this javascript object is working perfectly. UniSession.AddJS ('var socket = io.connect ();'); Once it is created I need to perform some functions of it like. socket.on (); socket.disconnect (); How can I send commands to this object? Quote
shawdown Posted March 12, 2019 Posted March 12, 2019 Just remembering that these commands are sent at different times. Example: socket.disconnect (); It only happens when the form is closed. Quote
shawdown Posted March 12, 2019 Posted March 12, 2019 Problem solved. I was wrong to create the object. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.