This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

PIN Pad always in Front possible?
#1
I have a visualisation page that I want to protect with a PIN code. To do this, I have activated the PIN code in the structure settings. If the customer accidentally taps next to the PIN pad, the entire content disappears and can only be retrieved by refreshing the page. However, this option is not available on the display. How can I always keep the PIN pad in the foreground?

I've made a short clip to demonstrate what I mean...




Thx for your help
Reply
#2
Add to Custom JavaScript:
Code:
$(function() {
  $('.modal-backdrop').off('vclick');
});
Reply
#3
Wow, that was fast. Thank you :-))

It works but not finaly solved my problem. If the user now taps the "X"-Button it's the same issue than before. Can I delete or deactivate that button as next?

Reply
#4
Try this:
Code:
$(function() {
  $('.modal-backdrop').off('vclick');
  $('.control-pincode .btn-cancel').css('visibility', 'hidden');
});
Reply
#5
(28.09.2021, 09:49)admin Wrote: Add to Custom JavaScript:
Code:
$(function() {
  $('.modal-backdrop').off('vclick');
});

(28.09.2021, 10:37)admin Wrote: Try this:
Code:
$(function() {
  $('.modal-backdrop').off('vclick');
  $('.control-pincode .btn-cancel').css('visibility', 'hidden');
});

That is great :-) it works how I need... many thx

   
Reply


Forum Jump: