Submitted by Erick Rondin on December 1, 2011 - 5:19am Assumed Answered Tags: untaggedjive-migrated Hello, I have a customer who needs to disable the backward key on the ET1 using RhoElements. Do you know if it is possible and how to do it ? Thanks Regards February 28, 2012 - 10:19am #1 Robin West The back key by default does The back key by default does no action in RhoElements (is disabled by default). If a programmer wants to activate it to do an action in their RhoElements application, they can use the KeyCapture plugin: window.onload = function(){ keyCapture.keyValue = '0x04'; // This is the value of the backKey keyCapture.keyEvent = 'doBackKey()';};function doBackKey(){ document.getElementById('myDiv').innerHTML = 'back key pressed';} If the back key is causing the version of RhoElements that your customer is using to navigate backwards, it maybe an old issue with a beta build. The up-to-date build has the back button disabled by default. I hope this helps, Ben Vote: Vote up! Vote down! Points: 0 You voted ‘up’ Log in to post comments
The back key by default does no action in RhoElements (is disabled by default).
If a programmer wants to activate it to do an action in their RhoElements application, they can use the KeyCapture plugin:
If the back key is causing the version of RhoElements that your customer is using to navigate backwards, it maybe an old issue with a beta build. The up-to-date build has the back button disabled by default.
I hope this helps,
Ben
Points: 0
You voted ‘up’
Log in to post comments