getting the sum using footerdata on jqgrid(使用 jqgrid 上的 footerdata 获取总和)
问题描述
我有一个列名 Total.
而且我也在使用页脚
jqgrid 的值.
I have a column name Total.
And I'm also using the footer
value of the jqgrid.
例如这是列
总计
100
-98
-76
98
76
Total
100
-98
-76
98
76
我怎样才能得到行的总和
使用页脚数据.
how can I get the sum of the row
using the footer data.
这是我的代码.
注意:如果我使用 'sum' 它会给我 'NaN'
价值.
here is my code.
note: if i use 'sum' it gives me 'NaN'
value.
var parseTotal= grid.jqGrid('getCol', 'Total', false, 'sum');
grid.jqGrid('footerData', 'set', { Total: parseTotal});
推荐答案
你应该发布更完整的代码来重现问题.我尝试了一些选项:输入数据为字符串,数据为整数,使用 formatter: "integer"
,不使用格式化程序等等.
You should post more full code which reproduce the problem. I tried some options: the input data as string, the data as integers, using formatter: "integer"
, using no formatters and so on.
我没有发现没有列定义的输入数据会产生所描述的结果.查看演示
I found no input data of no column definition which produce the described results. Look at the demo
哪个有效,并与您的非工作演示进行比较.我希望你能在你的代码中找到错误.
which works and compare with your non working demo. I hope you will find the error in your code.
这篇关于使用 jqgrid 上的 footerdata 获取总和的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 jqgrid 上的 footerdata 获取总和
基础教程推荐
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01