I want to use Rich text kind of editor to write emails which should work with mobile keyboad perfectly.
is any one doing the same.
I am using some of them or Content editable =true with div also but getting scrolling issues and focus issues.
I want to use Rich text kind of editor to write emails which should work with mobile keyboad perfectly.
is any one doing the same.
I am using some of them or Content editable =true with div also but getting scrolling issues and focus issues.
You should try http://quilljs.com I recently implemented it on one of my apps, and it worked wonderfully. Just make sure you place the following code in your css. Good luck!
*[contenteditable] {
-webkit-user-select: text !important;
}
thanks to reply but i am using the same one (contenteditable div).
It creates problem for scrolling the text and as well as while changing the caret postion on tap Inside ionic app.