After updating to the new version 3259 the group totals in my query stop formatting properly.
Just displaying data without formating ie 23456,34213 instead of $ 2345,34
Use to format with <p style="text-align:right">#= kendo.toString(sum, ‘c’) # </p>
This does not seem to work anymore.
Anybody got any ideas?
Tj
Totals in Query Groups not formatting
Totals in Query Groups not formatting
Tj
Using Version 9 Build 3259 - mySQL
Using Version 9 Build 3259 - mySQL
Re: Totals in Query Groups not formatting
From Valdimir
please use the following template
#=kendo.toString(parseInt(sum),'c')#
or
#=kendo.toString(parseFloat(sum),'c')#
You don't need to align to the right any more - it will happen automatically.
please use the following template
#=kendo.toString(parseInt(sum),'c')#
or
#=kendo.toString(parseFloat(sum),'c')#
You don't need to align to the right any more - it will happen automatically.
Tj
Using Version 9 Build 3259 - mySQL
Using Version 9 Build 3259 - mySQL