ui.text format according to i18n locale

Is there a better way instead of manual parse/format?
getValues() return formatted value so we need to parse it again

https://snippet.webix.com/ho9yciaz

Hello,

Starting from later 5.2 updates it is possible to provide a custom logic directly in format property with the following syntax:

 format:{       
       parse: function(value){         
         return value;                // what getValue will return
       },
       edit: function(value){  
         return value;                // what will be rendered in input
       },
  }

Please, check the following sample:

https://snippet.webix.com/nt6vcjzq

Thanks! That’s a great functionality!