-
Notifications
You must be signed in to change notification settings - Fork 13.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Text Area not scrollable #2374
Comments
Ok I got it to work by doing what someone else said in the previous thread. myApp.directive('textarea', function () {
return {
restrict: 'E',
scope: {
},
link: function (scope, element, attrs) {
element.bind('touchend touchmove touchstart', function(e){
e.stopPropagation();
console.log('Stoped Propagation');
});
}
};
}); |
Glad you got it to work, did it fix the cursor position issue as well? |
Greetings! My sensors indicate a reply was requested over 30 days ago. Since we have not received a reply, the issue is being closed. If you are still experiencing this issue, Thank you! |
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out. |
In regards to: #1280
My text area is still not scrollable when keyboard is open. Also when I press in the text field the cursor always returns to the top or bottom impossible to move the cursor to a desired spot.
I tried updating to Ionic, v1.0.0-beta.13. I have a very large text area with in a slide though not sure if that would be a problem:
I even tried making a new view with only the text area on the screen and still no dice.
The text was updated successfully, but these errors were encountered: