The xml is very simple, but it troubles me many days, here is the XML demo:
<screen>
<screenTopbar />
<container style="align:fill-top;layout:inlinelayout(false,fill)" id="titlecontainer">
<container class="sumBar" style="align:top;layout:gridlayout(2,1)">
<text style="align:left">%billList.label.total(@{total})%</text>
<text style="align:right">%billList.label.checked(@{checked})%</text>
</container>
<container class="titleBar" style="align:top;layout:gridlayout(4,1)">
<container class="titleBarCell">%title1%</container>
<container class="titleBarCell">%title2%</container>
<container class="titleBarCell">%title3%</container>
<container class="titleBarCell">%title4%</container>
</container>
</container>
<scrollpane id="listscrollpane">
<list>
<listitem></listitem>
....
</list>
</scrollpane>
</screen>
The problem is:
1. When I put the scrollpane next to a containter (as the DEMO xml):
The scrollpane will not display!! Looks like there is not scrollpane defined.
2. When I put the scrollpane which id is "listscrollpane" in the container "titlecontainer".
The scrollpane displayed, if there's listitem outside the screen, when I press the DOWN key to focus the selected listitem, no scrollbar display and the scrollpane can't scroll, but the listitem outside the screen can still be focused use the DOWN key...
Any assistant? Thanks a lot!

