In order to define my own listener, I have disabled the default one using the following property:
<property as="xs:boolean" name="oxf.xforms.show-error-dialog" value="false"/>
The Java Script I am using is:
ORBEON.xforms.Events.orbeonLoadedEvent.subscribe(function(eventName, eventData) {
var test=eventData.details;
alert(test);
});
I want this script to get executed when a session timeout occurs ? How can I execute this ?
Eventually, what I wanto achieve is that I want to display my own error message after a session timeout..