1) Preserve the settings set by the user in the import/export data dialog. Fixes #7428

2) Fixed the JSON editor issue of hiding the first record. Fixes #7520
This commit is contained in:
Yogesh Mahajan
2022-07-18 10:54:03 +05:30
committed by Akshay Joshi
parent 9dde195af4
commit 8f2bda2309
16 changed files with 407 additions and 359 deletions

View File

@@ -131,7 +131,7 @@ function setEditorPosition(cellEle, editorEle) {
let cellRect = cellEle.getBoundingClientRect();
let position = {
left: cellRect.left,
top: cellRect.top - editorEle.offsetHeight + 12,
top: Math.max(cellRect.top - editorEle.offsetHeight + 12, 0)
};
if ((position.left + editorEle.offsetWidth + 10) > gridEle.offsetWidth) {