Amélioration : normalisation de la fonction pour couper les string trop long en...
FRANCAIS
La fonctionnalité permettant d'afficher un texte en fonction de la taille de la cellule utilisée coupe la chaîne de caractère utilisant simplement la taille maximale.
La proposition est d'utiliser une méthode qui analyse la chaine de caractère pour éviter de couper et provoquer une erreur d'encodage.
ENGLISH
Title :
Introduce smart method to scrap a string to avoid encoding error
Description:
Some fields displayed text string and use description that can be too long according to the field size. For now, there is a simple substring with field size and the addition of "..." caracters.
The issue is that this uncalculated truncate can cause damage if the string have some encoded data like HTML caracters
example: Check & pay
If you truncate at 8 caracters you will break the string and it will affect the display.
The goal of this task is to implement a smart method that will avoid this kind of cases.