Package org.jabusuite.webclient.controls

Examples of org.jabusuite.webclient.controls.JbsExtent


        this.setPnSubCustomers(new PnHierarchyCustomerListPart(this,true));
        this.getPnSubCustomers().setSearchable(false);
       
        this.setSpTables(new SplitPane());
        this.getSpTables().setOrientation(SplitPane.ORIENTATION_VERTICAL);
        this.getSpTables().setSeparatorPosition(new JbsExtent(350,JbsExtent.PX));
        this.getSpTables().setSeparatorWidth(new JbsExtent(1,JbsExtent.PX));
    }
View Full Code Here


    }

    protected void initPanel() {
        JbsGrid grdMain = new JbsGrid(2);
        grdMain.setInsets(new Insets(5, 5));
        grdMain.setColumnWidth(0, new JbsExtent(300));

        grdMain.add(new JbsLabel(JbsL10N.getString("AccountEntry.entryDate")));
        grdMain.add(txEntryDate);
        grdMain.add(new JbsLabel(JbsL10N.getString("AccountEntry.receiptNumber")));
        grdMain.add(txReceiptNumber);
View Full Code Here

    protected void initPanel() {
        ContentPane cpStdData = new ContentPane();

        JbsGrid grdMain = new JbsGrid(2);
        grdMain.setInsets(new Insets(5, 5));
        grdMain.setColumnWidth(0, new JbsExtent(300));

        grdMain.add(new Label(JbsL10N.getString("ArticleVAT.name")));
        grdMain.add(txName);
        grdMain.add(new Label(JbsL10N.getString("ArticleVAT.value")));
        grdMain.add(txValue);
View Full Code Here

    private static final long serialVersionUID = 6793758396033561045L;
    protected SelContactType cbbContactType;

    public FmSelectContactType(String msg) {
        super(JbsL10N.getString("Contact.selectContactType"), new JbsExtent(350), new JbsExtent(200));
        this.initPanel(msg);
        this.cbbContactType.setSelectedIndex(0);
    }
View Full Code Here

        this.initPanel(msg);
        this.cbbContactType.setSelectedIndex(0);
    }

    public FmSelectContactType(String msg, SelContactType.ContactType contactType) {
        super(JbsL10N.getString("Contact.selectContactType"), new JbsExtent(350), new JbsExtent(200));
        this.initPanel(msg);
        this.setSelectedContactType(contactType);
    }
View Full Code Here

   
    @Override
    protected void drawPage() {
        super.drawPage();
        JbsGrid grdMain = new JbsGrid(2);
        grdMain.setColumnWidth(0, new JbsExtent(200,JbsExtent.PX));
        grdMain.add(new JbsLabel(JbsL10N.getString("Letter.template")));
        grdMain.add(selLetterTemplate);
       
        this.getColMain().add(grdMain);
    }
View Full Code Here

        colMain.setInsets(new Insets(5,5));
        colMain.add(new JbsLabel(msg));

        JbsGrid grdMain = new JbsGrid(2);
        grdMain.setInsets(new Insets(5, 10));
        grdMain.setColumnWidth(0,new JbsExtent(150));

        grdMain.add(new Label(JbsL10N.getString("Contact.selectContactType")));
        grdMain.add(cbbContactType);
        colMain.add(grdMain);
View Full Code Here

  protected JbsTextField txUserName;
  protected PasswordField txPassword;
 

  public FmLogin() {
    super(JbsL10N.getString("FmLogin.title"), new JbsExtent(400), new JbsExtent(300));
    this.initPnMain();
  }
View Full Code Here

 
  protected void initPnMain() {
    this.createCompontents();
    JbsGrid grdMain = new JbsGrid(2);
    grdMain.setInsets(new Insets(5,5));
    grdMain.setColumnWidth(0,new JbsExtent(300));
   
    grdMain.add(new Label(JbsL10N.getString("JbsUser.userName")));
    grdMain.add(txUserName);
    grdMain.add(new Label(JbsL10N.getString("JbsUser.password")));
    grdMain.add(txPassword);
View Full Code Here

    @Override
    protected void drawPage() {
        super.drawPage();
       
        JbsGrid grdMain = new JbsGrid(2);
        grdMain.setColumnWidth(0, new JbsExtent(200,JbsExtent.PX));
        grdMain.add(new JbsLabel(JbsL10N.getString("MassLetterWizard.selectedContacts")));
        grdMain.add(lblContactCount);
       
        this.getColMain().add(grdMain);
    }
View Full Code Here

TOP

Related Classes of org.jabusuite.webclient.controls.JbsExtent

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.