Grid的cellEditEnding 事件如下:
cellEditEnding:function (s, e) {
var col = s.columns[e.col];
var flex = s;
oldVal = flex.getCellData(e.row, e.col);
newVal = flex.activeEditor.value;
var tooltip = new wijmo.Tooltip();
tooltip.show(flex.activeEditor, newVal);
}
|
|