Skip to content
Advertisement

Changing the position of the React mention suggestion List

I am using react-mentions in my project for mentioning users.. The problem is My comment input is at bottom of the page.. The react-mentions show the suggestion when we type @ in the bottom of the cursor. I want this list to be above the cursor…Can anyone help me?

I tried Editing the css, but my methods doesn’t work. This is the Css i am using

JavaScript

This is the js code

JavaScript

But the output is still like the same..The list is showing below the cursor Please help me to solve the problem

Advertisement

Answer

You can use forceSuggestionsAboveCursor={true}

JavaScript

There is a demo page that shows how it works. This code example can be found in their GitHub here

It’s the middle one from BottomGuard’s section.

You can also use allowSuggestionsAboveCursor={true}, which will use bottom only if there’s space.

Advertisement