Your help was much appreciated. I have some points to add for these plugin.
For autogrow we dont need scrollbar and screen is flickering. So i added scrolling="no" for iframe and then i saw content was hiding when we click ENTER key or at bottom of the editor.
for removing hiding of content i commented the below code which served my purpose.
var m=o.getDocumentPosition();l+=m.y;l=l<0?0:l;var n=j.getScrollPosition().y;if(l>n||l<n-k)j.$.scrollTo(0,l);
But i think, the above code is not needed when autogrow is activated, may be some configuration can be done for the same.
Also in insertElement also have to invoke listener function inside plugin.js
Re: Auto increase height as we type contents
Re: Auto increase height as we type contents
For autogrow we dont need scrollbar and screen is flickering. So i added scrolling="no" for iframe and then i saw content was hiding when we click ENTER key or at bottom of the editor.
for removing hiding of content i commented the below code which served my purpose.
var m=o.getDocumentPosition();l+=m.y;l=l<0?0:l;var n=j.getScrollPosition().y;if(l>n||l<n-k)j.$.scrollTo(0,l);
But i think, the above code is not needed when autogrow is activated, may be some configuration can be done for the same.
Also in insertElement also have to invoke listener function inside plugin.js
Re: Auto increase height as we type contents
i dowloaded this - there are no DOC's to help NOOB's like me get this into the app
thank you for the help
Re: Auto increase height as we type contents