dmacfarlane / angular-mentions

Angular mentions for text fields.
MIT License
196 stars 171 forks source link

mouse click not working when used with angular-editor #248

Open saurav-13022002 opened 10 months ago

saurav-13022002 commented 10 months ago

Hi , I wanted to use this library with kolkov angular editor but selection with mouse click is not working only keyboard selection works. Any solution or work around for this. is there any solution?

DevanshGinilytics commented 8 months ago

I dug into it and found out this happens when there is tabindex="-1" applied to any parent element.

Since bootstrap modal, matDialog, matSidenav all these components use tabindex="-1" that's why issue happens only in these cases. Though it is not a perfect fix, but I fixed this by removing tabindex like so: (this could not be the ideal solution for everyone, since tabindex="-1" is there for a reason, please do your research before modifying tabindex.