Text editor in ios

hi

in the text editor, when we press the return key as the first input, the cursor goes away, and no more focus to the text editor.

also when we press return after some text, nothing happens.

anyone facing this issue? any solution?

thank you

Can’t see such issue, all works correctly for me. Make sure your text editor is not wrapped with <form> tag

1 Like

thank you. the problem was something else. not sure how it could be a problem.
we have this in our css for not allowing users to cut and copy the content from the app.

p,div,span,a,label,h1,h2,h3,h4,h5,h6{
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: -moz-none;
-o-user-select: none;
user-select: none;
}

after we remove the div from it, the editor works right way. :frowning:
thank you for your advise.