Browse Source
Merge pull request #303 from jerry-f/dev
fix: jfrefreshgrid 函数第二个参数应该是个数组
master
mengshukeji
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
8 additions and
11 deletions
-
src/global/api.js
|
|
@ -350,10 +350,7 @@ export function setCellFormat(row, column, attr, value, options = {}) { |
|
|
|
} |
|
|
|
|
|
|
|
// refresh
|
|
|
|
jfrefreshgrid(targetSheetData, { |
|
|
|
row: [row], |
|
|
|
column: [column] |
|
|
|
}) |
|
|
|
jfrefreshgrid(data, [{ "row": [row, row], "column": [column, column] }]); |
|
|
|
|
|
|
|
if (success && typeof success === 'function') { |
|
|
|
success(cellData); |
|
|
|