Example #1
0
    def __init__(self):
        super(ErrorsExample, self).__init__()

        self.setSpacing(True)

        self.addComponent(
            Label('<h3>Errors in caption</h3>', Label.CONTENT_XHTML))
        self.addComponent(
            Label('Error indicators are usually placed on the '
                  'right side of the component\'s caption.'))

        inpt = TextField('Field caption')
        inpt.setComponentError(UserError('This field is never satisfied'))
        self.addComponent(inpt)

        self.addComponent(
            Label('<h3>Errors without caption</h3>', Label.CONTENT_XHTML))
        self.addComponent(
            Label('If the component has no caption, the error '
                  'indicator is usually placed on the right side of the '
                  'component.'))

        inpt = TextField()
        inpt.setInputPrompt('This field has an error')
        inpt.setComponentError(UserError('This field is never satisfied.'))
        self.addComponent(inpt)

        self.addComponent(
            Label('<h3>Error icon placement depends on the '
                  'layout</h3>', Label.CONTENT_XHTML))
        self.addComponent(
            Label('FormLayout for example places the error '
                  'between the component caption and the actual field.'))

        fl = FormLayout()
        fl.setMargin(False)
        fl.setSpacing(False)
        self.addComponent(fl)
        inpt = TextField('Field caption')
        inpt.setInputPrompt('This field has an error')
        inpt.setComponentError(UserError('This field is never satisfied.'))
        fl.addComponent(inpt)
Example #2
0
    def __init__(self):
        super(ErrorsExample, self).__init__()

        self.setSpacing(True)

        self.addComponent(Label('<h3>Errors in caption</h3>',
                Label.CONTENT_XHTML))
        self.addComponent(Label('Error indicators are usually placed on the '
                'right side of the component\'s caption.'))

        inpt = TextField('Field caption')
        inpt.setComponentError(UserError('This field is never satisfied'))
        self.addComponent(inpt)

        self.addComponent(Label('<h3>Errors without caption</h3>',
                Label.CONTENT_XHTML))
        self.addComponent(Label('If the component has no caption, the error '
                'indicator is usually placed on the right side of the '
                'component.'))

        inpt = TextField()
        inpt.setInputPrompt('This field has an error')
        inpt.setComponentError(UserError('This field is never satisfied.'))
        self.addComponent(inpt)

        self.addComponent(Label('<h3>Error icon placement depends on the '
                'layout</h3>', Label.CONTENT_XHTML))
        self.addComponent(Label('FormLayout for example places the error '
                'between the component caption and the actual field.'))

        fl = FormLayout()
        fl.setMargin(False)
        fl.setSpacing(False)
        self.addComponent(fl)
        inpt = TextField('Field caption')
        inpt.setInputPrompt('This field has an error')
        inpt.setComponentError(UserError('This field is never satisfied.'))
        fl.addComponent(inpt)