Hi -- I have this code in a Laszlo app I'm trying to start prototyping:
<canvas>
<simplelayout axis='x' spacing='5' />
<view height='100%' id='sidebar' width='20%'>
<simplelayout axis='y' spacing='3' />
<window height='20%' id='filters' title='Filters' width='100%'></window>
<window height='20%' id='customers' title='Customers'
width='100%'></window>
<window height='60%' id='jobs' title='Jobs' width='100%'></window>
</view>
</canvas>
My problem is that this just stacks each of the windows one on top of
another, whereas my intention is to have each window appear neatly under the
last.
Could someone tell me what I've got wrong, here?
I've been trying all sorts of permutations, all to no avail.
Cheers,
Doug.