I have something like this :
<j:initialView>
<j:ResponsiveView>
<j:ApplicationMainContent width="100%" selectedContent="ssc1">
<j:ScrollableSectionContent name="ssc1" width="100%" /*also tried height="600"*/ >
<j:Card height="600" width="200">
<j:Label text="A"/>
<j:Label text="B"/>
<j:ScrollableSectionContent width="100%" height="50">
<j:Label text="0"/>
<j:Label text="1"/>
<j:Label text="2"/>
<j:Label text="3"/>
<j:Label text="4"/>
<j:Label text="5"/>
</j:ScrollableSectionContent>
<j:Label text="C"/>
</j:Card>
</j:ScrollableSectionContent>
</j:ApplicationMainContent>
</j:ResponsiveView>
</j:initialView>
I don't understand why it isn't working. The above exemple show only ABC :
How to do to have inside a j:Card
a 50px height scroll view (to show 0,1,2,3,4,5 in a scrollable content in my example) ?
I want the parent container to be ScrollableSectionContent because if I set browser windows lower than 600px I want to be able to scroll browser windows content to show Card
content
Regards