- 注册时间
- 2013-8-13
- 最后登录
- 2017-4-17
- 阅读权限
- 10
- 积分
- 1519
- 精华
- 0
- 帖子
- 418
|
我在datagrid中用了 <div property="columns"> <div field="C2" name="C2" headeralign="center">
<span id="spanUnitC2"></span></br>
<input id="Text1" property="editor" class="mini-spinner" value="" allownull="true"
allowLimitValue="false"/>
</div>
</div> 即 mini.spinner 控件
我的 ondrawcell:
function ondrawcell(e) {
$.each(UnitandPoint, function (n, v) {
if ("" + e.field + "" == v.StoreColName) {
return e.cellHtml = StringtoFormt(e.value, v.PointCount);
}
})
}
///变化小数点
function StringtoFormt(num, pointcount) {
if (num) {
if (!isNaN(num)) {
return (new Number(num).toFixed(pointcount));
}
else
{ return (num.toFixed(pointcount)) }
}
else {
}
}
现在的问题是,我在修改数据例如1.00的时候,改为1.06 ,那么显示在页面上的还是1.00,我在添加数据1.06数据的时候,显示在页面上的数据还是1.00,请问这是为什么?
|
|