fix: change vCell value after changed.
This commit is contained in:
parent
4096979d5d
commit
6de4987360
@ -477,7 +477,7 @@ const GridColumnDirection = {
|
||||
/**
|
||||
* @typedef GridVirtualRow
|
||||
* @property {boolean} editing - 行处于编辑状态
|
||||
* @property {IndexMap<GridVirtualCell>} cells - 虚拟单元格数组
|
||||
* @property {KeyMap<GridVirtualCell>} cells - 虚拟单元格数组
|
||||
* @private
|
||||
*/
|
||||
|
||||
@ -2439,7 +2439,7 @@ export class Grid {
|
||||
}
|
||||
cols.forEach((col, j) => {
|
||||
const cell = createElement('td', 'ui-grid-cell');
|
||||
virtualRow.cells[j] = {};
|
||||
virtualRow.cells[col.key ?? j] = {};
|
||||
if (col.visible !== false) {
|
||||
let style = this._get(col.key, 'style') ?? {};
|
||||
if (col.isfixed) {
|
||||
@ -2590,7 +2590,7 @@ export class Grid {
|
||||
if (cell == null) {
|
||||
return;
|
||||
}
|
||||
const virtualCell = virtualRow.cells[j];
|
||||
const virtualCell = virtualRow.cells[col.key ?? j];
|
||||
let val;
|
||||
if (col.text != null) {
|
||||
val = col.text;
|
||||
@ -3874,6 +3874,10 @@ export class Grid {
|
||||
oldValue ??= val;
|
||||
item[col.key] = value;
|
||||
}
|
||||
const virtualCell = this._var.virtualRows[index]?.cells[col.key];
|
||||
if (virtualCell != null) {
|
||||
virtualCell.value = value;
|
||||
}
|
||||
let tip = col.tooltip;
|
||||
if (typeof tip === 'function') {
|
||||
tip = tip.call(col, item);
|
||||
|
Loading…
x
Reference in New Issue
Block a user