Hi,
I need to format decimal into percentage.
0.05=> 5.00%
How can I do it?
Thank you
Hi,
I need to format decimal into percentage.
0.05=> 5.00%
How can I do it?
Thank you
You can use any custom function as column format for the grid ( or as a helper in the template )
function percentFormat(value){
return webix.i18n.numberFormat(value *100) + "%";
}