Hi,

I am doing some last changes to contacts' code before tomorrow's presentations.

I have this annoying issue with this 'RawVCard' that is displayed "squeezed" as text field instead of a text area (multiline text):

contactPersonRootBlocks = [...

detail.makeArea(
            parcel, "RawVCardArea",
            baseClass=RawVCardAreaBlock, # this makes the area conditionally visible
            height = 200,    # <-- didn't expanded the detail area either
            childrenBlocks=[
                detail.makeEditor(  # displays as a text field instead of as a text area
                    parcel, 'RawVCard',
                    viewAttribute=u'rawVCard',
                    presentationStyle={
                        'lineStyleEnum': 'MultiLine',  #<-- this works the block is moved outside childrenBlocks
                        'format': 'contactRawVCardField'
                    },
                    height = 200 # doesn't seem to work
                )
            ],
            position=0.951
        ).install(parcel),


The problem occurs on both alpha2 and 3. Also the the field displays correctly when outside the detail.makeArea, so the issue is only for text areas declared as childrenBlocks.

Any ideas?

Thanks,


Ernesto




_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

Open Source Applications Foundation "chandler-dev" mailing list
http://lists.osafoundation.org/mailman/listinfo/chandler-dev

Reply via email to