Examples of Groupbox


Examples of org.zkoss.zul.Groupbox

    final Panelchildren panelchildren = new Panelchildren();
    panelchildren.setParent(panel);
    panelchildren.setStyle("background-color: #EBEBEB;");

    final Groupbox gb = new Groupbox();
    gb.setMold("3d");
    gb.setContentStyle("padding: 2px");
    gb.setParent(panelchildren);

    final Caption caption = new Caption();
    caption.setImage("/images/icons/database_blue_16x16.gif");
    caption.setLabel("Demo-Data in PostgreSQL v9.0.2");
    caption.setStyle("color: #000000;font-weight:bold; text-align:left ");
View Full Code Here

Examples of org.zkoss.zul.Groupbox

     */
    Window win = new Window();
    win.setBorder("none");
    win.setParent(this);

    Groupbox gb = new Groupbox();
    gb.setMold("3d");
    gb.setClosable(false);
    gb.setParent(win);
    Caption cap = new Caption();
    cap.setImage(iconPath);
    cap.setLabel(title);
    cap.setStyle("padding: 0px;");
    cap.setParent(gb);
View Full Code Here

Examples of org.zkoss.zul.Groupbox

     */
    Window win = new Window();
    win.setBorder("none");
    win.setParent(this);

    Groupbox gb = new Groupbox();
    gb.setMold("3d");
    gb.setClosable(false);
    gb.setParent(win);
    Caption cap = new Caption();
    cap.setImage(iconPath);
    cap.setLabel(title);
    cap.setStyle("padding: 0px;");
    cap.setParent(gb);
View Full Code Here

Examples of org.zkoss.zul.Groupbox

     */
    Window win = new Window();
    win.setBorder("none");
    win.setParent(this);

    Groupbox gb = new Groupbox();
    gb.setMold("3d");
    gb.setClosable(false);
    gb.setParent(win);
    Caption cap = new Caption();
    cap.setImage(iconPath);
    cap.setLabel("Translator");
    cap.setStyle("padding: 0px;");
    cap.setParent(gb);
View Full Code Here

Examples of org.zkoss.zul.Groupbox

            @Override
            public void render(Row row, Object data) {
                final SynchronizationInfo synchronizationInfo = (SynchronizationInfo) data;
                row.setValue(data);

                Groupbox groupbox = new Groupbox();
                groupbox.setClosable(true);
                Caption caption = new org.zkoss.zul.Caption();
                caption.setLabel(synchronizationInfo.getAction());
                groupbox.appendChild(caption);
                row.appendChild(groupbox);

                if (synchronizationInfo.isSuccessful()) {
                    groupbox.appendChild(new Label(_("Completed")));
                } else {

                    Listbox listbox = new Listbox();

                    listbox.setModel(new SimpleListModel(synchronizationInfo
                            .getFailedReasons()));
                    groupbox.appendChild(listbox);
                }
            }
        };
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.