Hello!!
Does anyone know how to change the pop-up collation?
system.perspective.openPopup("popupAvaliarErro","Page/popup/generic", showCloseIcon = False, resizable = False, draggable = False, params = {"titulo": "Avaliação inexistente", "corpo": "Não existe nenhuma avaliação para esses parâmetros. Favor verificar o link acessado."})
I was testing it here and this bug only appears when the text is passed through parameters.
I added a label with a fixed text and it was correct
system.perspective.openPopup("popupAvaliarErro","Page/popup/generic", showCloseIcon = False, resizable = False, draggable = False, params = {"titulo": "Avaliação inexistente", "corpo": "Não existe nenhuma avaliação para esses parâmetros. Favor verificar o link acessado."})
You need to mark your strings as unicode; add the prefix u
like so:
system.perspective.openPopup("popupAvaliarErro","Page/popup/generic", showCloseIcon = False, resizable = False, draggable = False, params = {"titulo": u"Avaliação inexistente", "corpo": u"Não existe nenhuma avaliação para esses parâmetros. Favor verificar o link acessado."})
This is Python (2) behavior, not specific to Ignition.
3 Likes