Password Toggle button is not visible after Publishing app

0
Hello Team,   Currently working on the Mendix 11 where i used Toogle show password Widget. At local showing image properly . But After publishing app the below image showing Can anyone help how to resolve the above issue.  
asked
2 answers
0

It might help to run an update all widgets in this situation.

image.png

answered
0

Hello ;) 

 

It's weird why the icon won't render properly. 

 

My second idea would be to try and implement the show / hide function by yourself in Mendix. If you have no other option this could help at least with something. You could add 2 containers with the images / icons. One icon would be the show icon and the other would be the hide icon. The icons would be wrapped in containers and when you click on a container it would use a flag (hidePassword). 

 

Also you could have two input fields one with the 'show as password' option on true and the other with the 'show as password' option to false. 

 

When you click the hide icon the flag hidePassword turns to 'true' as value and it will show the input field with the show as password set to true and when you click the show icon it will do the opposite. 

 

I don't think this is difficult but the advantage is that you're no longer putting your basis on an external widget which is not platform supported and you're doing things in the reliable manner. 

 

 

answered