You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello. I'm using the latest .min version and have an issue that continues to surface over the last 3 years. The application uses a Chrome web browser in an Android touchscreen environment. On occasion the page will load but not allow input into a signature field. For example, the screen will scroll up and down when trying to sign in the signature area. I've tried a few different things over time such as giving the field focus and resetting the element but neither seem to completely eliminate the symptom. Is there an approach someone could suggest to perhaps check the field for readiness when appropriate?
Thanks in advance.
Moose
11/9/19 update- I was able to narrow down the issue. The div I am hiding and showing contains the signature field. See below.
Hello. I'm using the latest .min version and have an issue that continues to surface over the last 3 years. The application uses a Chrome web browser in an Android touchscreen environment. On occasion the page will load but not allow input into a signature field. For example, the screen will scroll up and down when trying to sign in the signature area. I've tried a few different things over time such as giving the field focus and resetting the element but neither seem to completely eliminate the symptom. Is there an approach someone could suggest to perhaps check the field for readiness when appropriate?
Thanks in advance.
Moose
11/9/19 update- I was able to narrow down the issue. The div I am hiding and showing contains the signature field. See below.
$('#primarysig').hide('fast');
$('#primarysig').show('fast');
document.getElementById("primarysig").style.visibility = "hidden";
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/jquery-ui.js"></script>document.getElementById("primarysig").style.visibility = "visible";
The text was updated successfully, but these errors were encountered: