jqGrid格式化数字输出
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jqGrid格式化数字输出相关的知识,希望对你有一定的参考价值。
科学显示4位小数金额,如80,100.5678
formatter: "currency",formatoptions: {thousandsSeparator:",", defaulValue:"",decimalPlaces:4}
科学显示4位小数金额并且带前置符号,如$80,100.5678
formatter: "currency",formatoptions: {thousandsSeparator:",", defaulValue:"",decimalPlaces:4,prefix:"$"}
科学显示4位小数金额并且带后置符号,如80,100.5678元
formatter: "currency",formatoptions: {thousandsSeparator:",", defaulValue:"",decimalPlaces:4,suffix:"元"}
以上是关于jqGrid格式化数字输出的主要内容,如果未能解决你的问题,请参考以下文章
Web jquery表格组件 JQGrid 的使用 - 全部代码