参考https://bbs.fanruan.com/thread-69540-1-1.html
这个是去除红三角的,就是单元格编辑后事件
写这个语句,然后加改变背景色或字体颜色语句
=======================================
var location = this.options.location; //获取当前控件的位置
var cr = FR.cellStr2ColumnRow(location);
var col = cr.col; //列号
var ro = cr.row; //行号
var c = FR.columnRow2CellStr({col: col, row: ro});
$("td[id^="+c+"]").css('background','yellow');//背景变色
$('.dirty').removeClass('dirty');
======
效果
QQ录屏20210909170954.mp4
=================
设计页面
录屏效果,由于延时,红色三角都出来了,后隐藏了
QQ录屏20210910094618.mp4