How to solve the problem that the placeholder is still displayed when the input is hidden?

0
How to make these two different displays at the same time?
asked
2 answers
1

If just putting conditional visibility on your page element isn't good enough for some reason, I'd recommend placing a container around it and putting the conditional visibility on the container instead. That way all elements inside should be hidden.

answered
0

“the problem” you describe is unknown to me.

If the input is hidden, but the placeholder is still showing, that sounds like a bug that Mendix should resolve.

Meanwhile. if Eline’s tips don’t help you out, try scss

input:hidden {
  display: none;
}

You probably need to add ‘placeholder’ or the dom-object showing it.

answered