When you click on a text field in a ScrollView, some extra space is added at the bottom when the keyboard pops up. However, once you close the keyboard, it never goes away.
Here's a super short example app.js (~25 lines): http://pastie.org/pastes/1215764
Anyone have an idea on a work-around? A "return" event listener on the text field would be the perfect place to clean up this space that's no longer needed, but nothing seems to work! I've tried setting the height and contentHeight, to no avail.
In my case, I'd even settle for disabling the scrolling when the keyboard is not visible, but the only way I've found is to set "touchenabled" to false, which then makes the text field unclickable!