3

器用さを使用してploneでコンテンツタイプを作成しています..これまでのところ良い..しかし、チェック時にいくつかのフィールドを非表示にするSchema.Boolを作成したいと思います。これが私のサンプルです

sameaddress = schema.Bool(
        title=_(u"Sames as bill to address"),
        required=False,
    )

toCustShipStreet = schema.TextLine(
        title=_(u"Ship to - Street:"),
    )

toCustShipCity = schema.TextLine(
        title=_(u"Ship to - City:"),
    )
toCustShipState = schema.TextLine(
        title=_(u"Ship to - State:"),
    )
toCustShipCountry = schema.TextLine(
        title=_(u"Ship to - Country:"),
    )

これどうやってするの??助けてください

4

1 に答える 1