Skip to content

Commit

Permalink
GROK-16985: Pinned columns: Fixed text not visible when editing in Pi…
Browse files Browse the repository at this point in the history
…nned Column
  • Loading branch information
LaykDimon committed Feb 7, 2025
1 parent 96858b7 commit 949cc63
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libraries/gridext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"access": "public"
},
"fullName": "DG Grid Extensions",
"version": "1.4.1",
"version": "1.4.2",
"author": {
"name": "Dmytro Kovalyov",
"email": "[email protected]"
Expand Down
3 changes: 2 additions & 1 deletion libraries/gridext/src/pinned/PinnedColumn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,8 @@ export class PinnedColumn {
input.style.top = (nHColHead + (nPinnedRow - nRowMin) * nHRows) + 'px';
input.style.width = this.m_root.offsetWidth + 'px';
input.style.height = nHRows + 'px';
input.style.textAlign = 'right';
input.style.textAlign = 'left';
input.style.zIndex = '2';
input.addEventListener('focusout', () => {
input.parentElement!.removeChild(input);
});
Expand Down
2 changes: 1 addition & 1 deletion packages/PowerGrid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"dependencies": {
"datagrok-tools": "latest",
"@datagrok-libraries/gridext": "^1.4.1",
"@datagrok-libraries/gridext": "^1.4.2",
"@datagrok-libraries/utils": "^4.3.12",
"@types/wu": "^2.1.44",
"cash-dom": "^8.1.5",
Expand Down

0 comments on commit 949cc63

Please sign in to comment.