The web application, in which jqxEditor is used, needs to perform an auto logout after some time of inactivity. To implement this, there are two event listeners registered on document level, which ‘reset the idle timer’:
$(document).bind("click", function() {
// reset idle timer...
});
$(document).bind("keypress", function() {
// reset idle timer...
});
However, this works fine for all elements, inputs, widgets, etc. except for jqxEditor. No such events are fired.
I then wanted to use the change event. But this does also not help because jqxEditor does fire the change event only after loosing the focus… so how can I get either a real change event during editing or another event that let me detect that the user is still active?
Thanks in advance for any help!
– badera