If a modal pop-up page is open on the screen, if a user then tries to use the Mendix native feedback widget the user cannot type in the textarea field. I tried a couple of obvious fixes like changing the z-index on the feedback widget pop-up field but it doesn’t seem to help. I am thinking that when the popup field opens it may be applying a css change to everything else apart from the popup. Something like: .disable-select {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
} Any suggestions to remedy this?
↧