Skip to content

Commit 60fc781

Browse files
mistrykaran91mmalerba
authored andcommittedMar 19, 2025·
fix(cdk/text-field): Long multiline textfield focus issue (#30312)
When we have long multiline textfield and put cursor on almost an end (For eg. on 3rd last line) the scroll moves up to the top of textarea. This fix will cache the `scrollTop` in `resizeToFitContent` method Fixes #20255 (cherry picked from commit dc70692)
1 parent 0ec7fd1 commit 60fc781

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎src/cdk/text-field/autosize.ts

+4
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ export class CdkTextareaAutosize implements AfterViewInit, DoCheck, OnDestroy {
117117
private _cachedLineHeight?: number;
118118
/** Cached height of a textarea with only the placeholder. */
119119
private _cachedPlaceholderHeight?: number;
120+
/** Cached scroll top of a textarea */
121+
private _cachedScrollTop: number;
120122

121123
/** Used to reference correct document/window */
122124
protected _document? = inject(DOCUMENT, {optional: true});
@@ -303,6 +305,7 @@ export class CdkTextareaAutosize implements AfterViewInit, DoCheck, OnDestroy {
303305

304306
this._cacheTextareaLineHeight();
305307
this._cacheTextareaPlaceholderHeight();
308+
this._cachedScrollTop = this._textareaElement.scrollTop;
306309

307310
// If we haven't determined the line-height yet, we know we're still hidden and there's no point
308311
// in checking the height of the textarea.
@@ -367,6 +370,7 @@ export class CdkTextareaAutosize implements AfterViewInit, DoCheck, OnDestroy {
367370
// it to receive focus on IE and Edge.
368371
if (!this._destroyed.isStopped && this._hasFocus) {
369372
textarea.setSelectionRange(selectionStart, selectionEnd);
373+
textarea.scrollTop = this._cachedScrollTop;
370374
}
371375
}
372376
}

0 commit comments

Comments
 (0)
Please sign in to comment.