http://www.newton-inc.com/dev/techinfo/qa/qa.htm
newtEditView
or newtROEditView
, I cannot scroll through all the text of a large note. After a few pages it stops scrolling. What is going wrong?newtEditView
and newtROEditView
have a default scroll height of 2,000 pixels. To work around this limitation, you will need to add a slot called noteSize
to your newt(RO)editView
. This slot should hold an array of two elements. The first element is the scroll width. If you do not want horizontal scrolling, the scroll width should equal the view width. The second element is the scrollHeight
.noteSize
slot that you would use to create a newt(RO)EditView
with a scroll height of 20,000 pixels. {
_proto: newtEditView,
noteSize: [viewWidth, 20000],
...
}