Hi,

Spec has me tearing my hair out again.

I'm using a composed layout with two columns in it. In the second column I'd like to place some rows which in turn contain columns.

There does not seem to be any way to do this. Everthing that I try only renders one of the two main columns.
Guidance would be spreciated.

defaultSpec
    <spec: #default>

    ^SpecLayout composed
        newColumn: [ :tcol |
               tcol newRow:[:trow | trow add: #lblFolder     ] height: 30.
                ];

        newColumn: [ :tcol |
                tcol newRow:[:trow |
                    trow     newColumn: [ :tcol2 | tcol2 add: #ddlfolder];
                             newColumn: [ :tcol2 | tcol2 add: #txtFolder].
                            ] height: 30.
                ].

Reply via email to