填报模板中,修改某一单元格的值后给其他单元格赋值

image.png我想实现修改D16单元格的值后,如何给D18单元格赋值修改时间,其中D16,D18都是根据D1横向扩展的,请问该如何写代码?

补充:

QQ截图20240204132602.png

FineReport ANN0000 发布于 2024-2-4 11:38 (编辑于 2024-2-4 13:42)
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共2回答
最佳回答
0
snrtuemcLv8专家互助
发布于2024-2-4 11:43(编辑于 2024-2-4 13:44)

参考下面的js,直接编辑结束或者编辑后后事件

Date.prototype.Format = function (fmt) { // author: meizz

  var o = {

    "M+": this.getMonth() + 1, // 月份

    "d+": this.getDate(), // 日

    "h+": this.getHours(), // 小时

    "m+": this.getMinutes(), // 分

    "s+": this.getSeconds(), // 秒

    "q+": Math.floor((this.getMonth() + 3) / 3), // 季度

    "S": this.getMilliseconds() // 毫秒

  };

  if (/(y+)/.test(fmt))

    fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));

  for (var k in o)

    if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));

      return fmt;

}

var location = this.options.location; //获取当前控件的位置

var cr = FR.cellStr2ColumnRow(location);

var col = cr.col; //列号

var ro = cr.row; //行号

//var myDate = new Date();

var b=new Date().Format("yyyy-MM-dd hh:mm:ss");

   // 获取日期与时间

contentPane.setCellValue(0, col, ro+2, b);

  • ANN0000 ANN0000(提问者) 你好,代码是只对扩展出来的第一列生效的,扩展出来的其他列编辑后赋值失败是什么原因呢?(已补充图片)
    2024-02-04 13:43 
  • snrtuemc snrtuemc 回复 ANN0000(提问者) 原来多了=1的时候赋值,现在好了,在拷贝下
    2024-02-04 13:45 
  • ANN0000 ANN0000(提问者) 回复 snrtuemc 可以了,感谢!
    2024-02-04 13:47 
最佳回答
0
用户k6280494Lv6资深互助
发布于2024-2-4 11:40(编辑于 2024-2-4 11:41)

编辑后事件

_g().setCellValue(0,3,17,rq)

image.png

  • ANN0000 ANN0000(提问者) 你好,代码是只对扩展出来的第一列生效的,扩展出来的其他列编辑后赋值失败是什么原因呢?(已补充图片)
    2024-02-04 13:43 
  • 2关注人数
  • 426浏览人数
  • 最后回答于:2024-2-4 13:44
    请选择关闭问题的原因
    确定 取消
    返回顶部