Jqgrid custom format use bracket() if negatif value(Jqgrid 自定义格式使用括号() if negatif value)
问题描述
Jqgrid中是否有任何解决方案,如果有负数则显示括号()"
?
Is any solution in Jqgrid if there is negative number then show bracket "()"
?
例如:如果值为 -23,则显示 (23)
ex: show (23) if value was -23
谢谢
推荐答案
您可以使用自定义格式化程序来做您想做的事.要正确格式化数字或整数,您可以使用 $.jgrid.formatter.number
或 $.jgrid.formatter.integer 调用
作为第二个参数.格式化程序的例子是$.fmatter.util.NumberFormat
方法
You can use custom formatter to do what you want. To format numbers or integers correctly you can call $.fmatter.util.NumberFormat
method with $.jgrid.formatter.number
or $.jgrid.formatter.integer
as the second parameter. The example of the formetter is
formatter: function (cellvalue, options) {
var value = parseFloat(cellvalue), retult,
op = $.extend({}, $.jgrid.formatter.number); // or $.jgrid.formatter.integer
if(!$.fmatter.isUndefined(options.colModel.formatoptions)) {
op = $.extend({}, op,options.colModel.formatoptions);
}
retult = $.fmatter.util.NumberFormat(Math.abs(value), op);
return (value >= 0 ? retult : '(' + retult + ')') + ' €';
}
您还可以更改颜色或其他显示负数的 CSS 样式.您可以使用 cellattr
属性在带有负数的单元格中添加 class
或 style
属性:
you can additionally change color or some other CSS style of displaying of the negative numbers. You can use cellattr
property to add class
or style
attribute in the cells with negative numbers:
cellattr: function (rowid, cellvalue) {
return parseFloat(cellvalue) >= 0 ? '' : ' style="color:red;font-weight:bold;"'
}
演示演示设置.结果如下
这篇关于Jqgrid 自定义格式使用括号() if negatif value的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Jqgrid 自定义格式使用括号() if negatif value
基础教程推荐
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01