Open pankajvnale opened 11 months ago
Can you provide a StackBlitz example?
@dmacfarlane
We are facing the same issue and here is a stackblitz example where we reproduced it.
https://stackblitz.com/edit/5yhdn9?file=src%2Fexample%2Finput-overview-example.html
Another note to make that there should be consideration showing pop up to the left of @ when the tagging is close to the right boundary of the screen:
This seems to be related: https://github.com/dmacfarlane/angular-mentions/issues/240
@vmandrychenko The mention menu's position is set to absolute. In the demo, it is a child of the <body>
element so there is no issue.
However, in your project, the parent of mention menu is a <div> created from
mat-form-field. Unfortunately, this
Overall, users of this component will run into this issue sooner or later. An alternative approach to displaying dropdown is to move it to an overlay that has nothing to do with the input field and takes up the whole viewport with fixed position.