Package com.dodo.blog.ui.component.input

Examples of com.dodo.blog.ui.component.input.CheckBox


        FieldSet additionalInfo = new FieldSet( localize( "title.additionalInfo" ) );
        form.add( additionalInfo );

        additionalInfo.add( new FormRow( localize( "label.name" ), new TextBox( "name" ) ) );
        additionalInfo.add( new FormRow( localize( "label.surname" ), new TextBox( "surname" ) ) );
        additionalInfo.add( new FormRow( localize( "label.notify" ), new CheckBox( "notify" ) ) );

        // TODO: captcha

        form.add( new AjaxSubmitButton( "save", localize( "button.register" ) ) );
    }
View Full Code Here


        FieldSet additionalInfo = new FieldSet( localize( "title.additionalInfo" ) );
        form.add( additionalInfo );

        additionalInfo.add( new FormRow( localize( "label.name" ), new TextBox( "name" ) ) );
        additionalInfo.add( new FormRow( localize( "label.surname" ), new TextBox( "surname" ) ) );
        additionalInfo.add( new FormRow( localize( "label.notify" ), new CheckBox( "notify" ) ) );

        form.add( new AjaxSubmitButton( "save", localize( "button.save" ) ) );
    }
View Full Code Here

TOP

Related Classes of com.dodo.blog.ui.component.input.CheckBox

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.