List of usage examples for com.vaadin.ui HorizontalLayout setHeight
@Override public void setHeight(String height)
From source file:com.gnts.pem.txn.synd.SyndBuilding.java
License:Open Source License
@SuppressWarnings("deprecation") void buildView(VerticalLayout layoutPage, HorizontalLayout hlHeaderLayout) { // for component width hlHeaderLayout.removeAllComponents(); setComponentStyle();//from ww w . ja v a 2s .c om tblEvalDetails = new Table(); tblEvalDetails.setStyleName(Runo.TABLE_SMALL); tblEvalDetails.setPageLength(12); tblEvalDetails.setSizeFull(); tblEvalDetails.setFooterVisible(true); tblEvalDetails.setSelectable(true); tblEvalDetails.setImmediate(true); tblEvalDetails.setColumnCollapsingAllowed(true); // for evaluation details tfEvaluationPurpose.setValue("Collateral Security to the Bank"); slStreetSerNo.addItem("STREET NAME"); slStreetSerNo.addItem("SURVEY NO"); slStreetSerNo.setNullSelectionAllowed(false); tfEvaluationNumber.setRequired(true); tfBankBranch.setRequired(true); dfDateofValuation.setRequired(true); tfEvaluationPurpose.setRequired(true); layoutEvaluationDetails1.setColumns(4); layoutEvaluationDetails1.addComponent(tfEvaluationNumber); layoutEvaluationDetails1.addComponent(tfBankBranch); layoutEvaluationDetails1.addComponent(tfEvaluationPurpose); layoutEvaluationDetails1.addComponent(tfValuatedBy); layoutEvaluationDetails1.addComponent(dfDateofValuation); layoutEvaluationDetails1.addComponent(dfVerifiedDate); layoutEvaluationDetails1.addComponent(tfVerifiedBy); layoutEvaluationDetails1.addComponent(tfDynamicEvaluation1); layoutEvaluationDetails1.addComponent(tfDynamicEvaluation2); tfDynamicEvaluation1.setVisible(false); tfDynamicEvaluation2.setVisible(false); layoutEvaluationDetails1.setSpacing(true); layoutEvaluationDetails1.setMargin(true); layoutEvaluationDetails.addComponent(btnDynamicEvaluation1); layoutEvaluationDetails.setComponentAlignment(btnDynamicEvaluation1, Alignment.TOP_RIGHT); layoutEvaluationDetails.addComponent(layoutEvaluationDetails1); // for customer details tfDynamicCustomer1.setVisible(false); tfDynamicCustomer2.setVisible(false); layoutCustomerDetail1.setColumns(4); //layoutCustomerDetail.setCaption("Customer Details"); layoutCustomerDetail1.addComponent(tfCustomerName); layoutCustomerDetail1.addComponent(slPropertyDesc); layoutCustomerDetail1.addComponent(tfDynamicCustomer1); layoutCustomerDetail1.addComponent(tfDynamicCustomer2); layoutCustomerDetail1.setSpacing(true); layoutCustomerDetail1.setMargin(true); layoutCustomerDetail.addComponent(btnDynamicCustomer); layoutCustomerDetail.setComponentAlignment(btnDynamicCustomer, Alignment.TOP_RIGHT); layoutCustomerDetail.addComponent(layoutCustomerDetail1); // for asset details VerticalLayout formAsset1 = new VerticalLayout(); VerticalLayout formAsset2 = new VerticalLayout(); VerticalLayout formAsset3 = new VerticalLayout(); VerticalLayout formAsset4 = new VerticalLayout(); formAsset1.setSpacing(true); formAsset2.setSpacing(true); formAsset4.setSpacing(true); formAsset1.addComponent(tfCustomerName); formAsset1.addComponent(tfLandMark); formAsset1.addComponent(slPropertyDesc); formAsset2.addComponent(tfCustomerAddr); formAsset3.addComponent(tfPropertyAddress); formAsset3.addComponent(chkSameAddress); formAsset4.addComponent(tfDynamicAsset1); formAsset4.addComponent(tfDynamicAsset2); tfDynamicAsset1.setVisible(false); tfDynamicAsset2.setVisible(false); chkSameAddress.setImmediate(true); chkSameAddress.addListener(new Property.ValueChangeListener() { private static final long serialVersionUID = 1L; public void valueChange(ValueChangeEvent event) { if (chkSameAddress.getValue().equals(true)) { tfPropertyAddress.setValue(tfCustomerAddr.getValue()); } else { tfPropertyAddress.setValue(""); } } }); layoutAssetDetails1.setSpacing(true); layoutAssetDetails1.setColumns(4); layoutAssetDetails1.addComponent(formAsset1); layoutAssetDetails1.addComponent(formAsset2); layoutAssetDetails1.addComponent(formAsset3); layoutAssetDetails1.addComponent(formAsset4); layoutAssetDetails1.setMargin(true); layoutAssetDetails.addComponent(btnDynamicAsset); layoutAssetDetails.setComponentAlignment(btnDynamicAsset, Alignment.TOP_RIGHT); layoutAssetDetails.addComponent(layoutAssetDetails1); lblHeading = new Label("Owner Details"); layoutAssetOwner.addComponent(lblHeading); lblHeading.setStyleName("h4"); layoutAssetOwner.addComponent(PanelGenerator.createPanel(layoutOwnerDetails)); lblHeading = new Label("Asset Details"); layoutAssetOwner.addComponent(lblHeading); lblHeading.setStyleName("h4"); layoutAssetOwner.addComponent(PanelGenerator.createPanel(layoutAssetDetails)); //for Owner Details layoutOwnerDetails.addComponent(btnAddOwner); layoutOwnerDetails.setComponentAlignment(btnAddOwner, Alignment.TOP_RIGHT); layoutOwnerDetails1.setColumns(4); layoutOwnerDetails1.addComponent(new ComponentIterOwnerDetails("", "")); layoutOwnerDetails.addComponent(layoutOwnerDetails1); layoutOwnerDetails1.setSpacing(true); layoutOwnerDetails1.setMargin(true); // for document details panelNormalDocumentDetails.addComponent(btnAddNorDoc); panelNormalDocumentDetails.setComponentAlignment(btnAddNorDoc, Alignment.TOP_RIGHT); panelNormalDocumentDetails.addComponent(new ComponentIteratorNormlDoc(null, null, "", "")); panelNormalDocumentDetails.setMargin(true); panelLegalDocumentDetails.addComponent(btnAddLegalDoc); panelLegalDocumentDetails.setComponentAlignment(btnAddLegalDoc, Alignment.TOP_RIGHT); panelLegalDocumentDetails.addComponent(new ComponentIteratorLegalDoc("", "", null)); panelLegalDocumentDetails.setMargin(true); layoutNormalLegal.addComponent(PanelGenerator.createPanel(panelNormalDocumentDetails)); lblHeading = new Label("Legal Documents"); layoutNormalLegal.addComponent(lblHeading); lblHeading.setStyleName("h4"); layoutNormalLegal.addComponent(PanelGenerator.createPanel(panelLegalDocumentDetails)); layoutNormalLegal.setMargin(true); // for adjoin properties //panelAdjoinProperties.setCaption("Adjoining Properties"); panelAdjoinProperties.addComponent(btnAddAdjoinProperty); panelAdjoinProperties.setComponentAlignment(btnAddAdjoinProperty, Alignment.BOTTOM_RIGHT); panelAdjoinProperties.addComponent(new ComponentIteratorAdjoinProperty(null, true, true, true)); // for dimensions //panelDimension.setCaption("Dimensions"); panelDimension.addComponent(btnAddDimension); panelDimension.setComponentAlignment(btnAddDimension, Alignment.BOTTOM_RIGHT); panelDimension.addComponent(new ComponentIterDimensionofPlot(null, true, true, true)); panelNormalDocumentDetails.setWidth("100%"); panelLegalDocumentDetails.setWidth("100%"); panelAdjoinProperties.setStyleName("width:100%;display:block;"); // for layoutmachingBoundary1.setSpacing(true); tfDynamicmatching1.setVisible(true); tfDynamicmatching2.setVisible(true); layoutmachingBoundary2.addComponent(btnDynamicmatching); layoutmachingBoundary2.setComponentAlignment(btnDynamicmatching, Alignment.TOP_RIGHT); layoutmachingBoundary1.setSpacing(true); layoutmachingBoundary1.addComponent(slMatchingBoundary); layoutmachingBoundary1.addComponent(slPlotDemarcated); layoutmachingBoundary1.addComponent(slApproveLandUse); layoutmachingBoundary1.addComponent(slTypeofProperty); layoutmachingBoundary1.addComponent(tfDynamicmatching1); layoutmachingBoundary1.addComponent(tfDynamicmatching2); layoutmachingBoundary1.setSpacing(true); layoutmachingBoundary1.setMargin(true); // tenure/occupancy details layoutTenureOccupay.setSpacing(true); layoutTenureOccupay1.setSpacing(true); layoutTenureOccupay2.addComponent(btnDynamicTenure); layoutTenureOccupay2.setComponentAlignment(btnDynamicTenure, Alignment.TOP_RIGHT); layoutTenureOccupay.setColumns(2); layoutTenureOccupay1.addComponent(tfStatusofTenure); layoutTenureOccupay1.addComponent(slOwnedorRent); layoutTenureOccupay1.addComponent(tfNoOfYears); layoutTenureOccupay1.addComponent(tfRelationship); layoutTenureOccupay1.addComponent(tfDynamicTenure1); layoutTenureOccupay1.addComponent(tfDynamicTenure2); layoutmachingBoundary2.addComponent(layoutmachingBoundary1); layoutTenureOccupay2.addComponent(layoutTenureOccupay1); layoutTenureOccupay.addComponent(PanelGenerator.createPanel(layoutmachingBoundary2)); layoutTenureOccupay.addComponent(PanelGenerator.createPanel(layoutTenureOccupay2)); tfDynamicTenure1.setVisible(false); tfDynamicTenure2.setVisible(false); layoutmachingBoundary1.setMargin(true); layoutTenureOccupay1.setMargin(true); layoutmachingBoundary.addComponent(layoutTenureOccupay); layoutTenureOccupay1.setMargin(true); layoutmachingBoundary.setMargin(true); // for no of rooms layoutNoofRooms2.addComponent(btnDynamicRooms); layoutNoofRooms2.setComponentAlignment(btnDynamicRooms, Alignment.TOP_RIGHT); layoutNoofRooms2.setMargin(true); layoutNoofRooms1.addComponent(tfNoofRooms); layoutNoofRooms1.addComponent(tfLivingDining); layoutNoofRooms1.addComponent(tfBedRooms); layoutNoofRooms1.addComponent(tfKitchen); layoutNoofRooms1.addComponent(tfToilets); layoutNoofRooms1.addComponent(tfDynamicRooms1); layoutNoofRooms1.addComponent(tfDynamicRooms2); tfDynamicRooms1.setVisible(false); tfDynamicRooms2.setVisible(false); layoutNoofRooms1.setSpacing(true); layoutNoofRooms2.addComponent(layoutNoofRooms1); // no of floors layoutNoofFloors.setColumns(2); layoutNoofFloors2.setMargin(true); layoutNoofFloors2.addComponent(btnDynamicFloor); layoutNoofFloors2.setComponentAlignment(btnDynamicFloor, Alignment.TOP_RIGHT); layoutNoofFloors1.addComponent(tfTotNoofFloors); layoutNoofFloors1.addComponent(tfPropertyLocated); layoutNoofFloors1.addComponent(tfApproxAgeofBuilding); layoutNoofFloors1.addComponent(tfResidualAgeofBuilding); layoutNoofFloors1.addComponent(slTypeofStructure); layoutNoofFloors1.addComponent(tfDynamicFloors1); layoutNoofFloors1.addComponent(tfDynamicFloors2); tfDynamicFloors1.setVisible(false); tfDynamicFloors2.setVisible(false); layoutNoofFloors1.setSpacing(true); layoutNoofFloors2.addComponent(layoutNoofFloors1); layoutNoofFloors.setSpacing(true); layoutNoofFloors.addComponent(PanelGenerator.createPanel(layoutNoofFloors2)); layoutNoofFloors.addComponent(PanelGenerator.createPanel(layoutNoofRooms2)); layoutNoofRooms.addComponent(layoutNoofFloors); layoutNoofRooms.setMargin(true); // construction //layoutConstruction.setCaption("Construction"); layoutConstruction1.setSpacing(true); layoutConstruction1.setColumns(4); layoutConstruction1.addComponent(tfStageofConst); layoutConstruction1.addComponent(tfDynamicConstruction1); layoutConstruction1.addComponent(tfDynamicConstruction2); tfDynamicConstruction1.setVisible(false); tfDynamicConstruction2.setVisible(false); layoutConstruction.addComponent(btnDynamicConstruction); layoutConstruction.setComponentAlignment(btnDynamicConstruction, Alignment.TOP_RIGHT); layoutConstruction.addComponent(layoutConstruction1); layoutConstruction.setMargin(true); //for violation //layoutViolation.setCaption("Violation Details"); layoutViolation1.setSpacing(true); layoutViolation1.setColumns(4); layoutViolation1.addComponent(tfAnyViolation); layoutViolation1.addComponent(tfDynamicViolation1); layoutViolation1.addComponent(tfDynamicViolation2); tfDynamicViolation1.setVisible(false); tfDynamicViolation2.setVisible(false); layoutViolation.addComponent(btnDynamicViolation); layoutViolation.setComponentAlignment(btnDynamicViolation, Alignment.TOP_RIGHT); layoutViolation.addComponent(layoutViolation1); layoutViolation.setMargin(true); layoutConstViolation.addComponent(PanelGenerator.createPanel(layoutConstruction)); layoutConstViolation.addComponent(PanelGenerator.createPanel(layoutViolation)); layoutConstViolation.setSpacing(true); layoutConstViolation.setMargin(true); // area details of the property //layoutAreaDetails.setCaption("Area Details of the Property"); layoutAreaDetails1.setSpacing(true); layoutAreaDetails1.setColumns(4); layoutAreaDetails1.addComponent(tfSiteArea); layoutAreaDetails1.addComponent(tfPlinthArea); layoutAreaDetails1.addComponent(tfCarpetArea); layoutAreaDetails1.addComponent(tfSalableArea); layoutAreaDetails1.addComponent(tfRemarks); layoutAreaDetails1.addComponent(tfDynamicAreaDetail1); layoutAreaDetails1.addComponent(tfDynamicAreaDetail2); tfDynamicAreaDetail1.setVisible(false); tfDynamicAreaDetail2.setVisible(false); layoutAreaDetails.addComponent(btnDynamicAreaDetail); layoutAreaDetails.setComponentAlignment(btnDynamicAreaDetail, Alignment.TOP_RIGHT); layoutAreaDetails.addComponent(layoutAreaDetails1); layoutAreaDetails.setMargin(true); // valuation of land //layoutValuationLand.setCaption("Valuation of Land"); layoutValuationLand.setSpacing(true); layoutValuationLand1.setSpacing(true); layoutValuationLand1.setColumns(4); layoutValuationLand1.addComponent(tfAreaofLand); layoutValuationLand1.addComponent(tfNorthandSouth); layoutValuationLand1.addComponent(tfMarketRate); layoutValuationLand1.addComponent(tfAdopetdMarketRate); layoutValuationLand1.addComponent(tfFairMarketRate); layoutValuationLand1.addComponent(tfDynamicValuation1); layoutValuationLand1.addComponent(tfDynamicValuation2); tfDynamicValuation1.setVisible(false); tfDynamicValuation2.setVisible(false); tfAdopetdMarketRate.setRequired(true); layoutValuationLand.addComponent(btnDynamicValuation); layoutValuationLand.setComponentAlignment(btnDynamicValuation, Alignment.TOP_RIGHT); layoutValuationLand.addComponent(layoutValuationLand1); layoutValuationLand.setMargin(true); //property value layoutPropertyValue.setSpacing(true); layoutPropertyValue.setMargin(true); layoutPropertyValue1.setColumns(4); layoutPropertyValue1.setSpacing(true); layoutPropertyValue1.addComponent(tfRealziableRate); layoutPropertyValue1.addComponent(tfDistressRate); layoutPropertyValue1.addComponent(tfGuidelineRate); layoutPropertyValue.addComponent(layoutPropertyValue1); // for details of plan approval layoutPlanApproval1.setColumns(4); formLand.addComponent(slLandandBuilding); formLand.addComponent(tfLandandBuilding); formBuilding.addComponent(slBuilding); formBuilding.addComponent(tfBuilding); layoutPlanApproval1.addComponent(formLand); layoutPlanApproval1.addComponent(formBuilding); layoutPlanApproval1.addComponent(tfPlanApprovedBy); layoutPlanApproval1.addComponent(dfLicenseFrom); layoutPlanApproval1.addComponent(slIsLicenceForced); layoutPlanApproval1.addComponent(slAllApprovalRecved); layoutPlanApproval1.addComponent(slConstAsperAppPlan); layoutPlanApproval1.addComponent(tfDynamicPlanApproval1); layoutPlanApproval1.addComponent(tfDynamicPlanApproval2); tfDynamicPlanApproval1.setVisible(false); tfDynamicPlanApproval2.setVisible(false); layoutPlanApproval1.setSpacing(true); layoutPlanApproval1.setMargin(true); layoutPlanApproval.addComponent(btnDynamicPlanApproval); layoutPlanApproval.setComponentAlignment(btnDynamicPlanApproval, Alignment.TOP_RIGHT); layoutPlanApproval.addComponent(layoutPlanApproval1); //valuation of Construction formConstValuation1.addComponent(slTypeProperty); formConstValuation1.addComponent(slTypeStructure); formConstValuation1.addComponent(tfYearConstruction); formConstValuation1.addComponent(slExterior); formConstValuation1.addComponent(slInterior); formConstValuation1.addComponent(tfLifeAge); formConstValuation1.addComponent(tfFutureLife); formConstValuation1.addComponent(tfDetailsPlan); formConstValuation1.addComponent(slDeviation); formConstValuation1.addComponent(tfDtlsDeviation); formConstValuation2.addComponent(btnAddRoofHt); formConstValuation2.addComponent(tfNoFloors); //formConstValuation2.addComponent(layoutRoofHeight); layoutConstValuation.setSpacing(true); layoutConstValuation1.setSpacing(true); layoutConstValuation1.setColumns(2); layoutConstValuation1.addComponent(formConstValuation1); layoutConstValuation1.addComponent(new VerticalLayout() { { addComponent(formConstValuation2); addComponent(layoutRoofHeight); } }); formConstValuation1.addComponent(tfDynamicConstval1); formConstValuation1.addComponent(tfDynamicConstval2); layoutConstValuation.addComponent(btnDynamicConstVal); layoutConstValuation.setComponentAlignment(btnDynamicConstVal, Alignment.TOP_RIGHT); layoutConstValuation.addComponent(layoutConstValuation1); layoutConstValuation.setMargin(true); // for plinth area layoutPlintharea.addComponent(btnAddPlinth); layoutPlintharea.setComponentAlignment(btnAddPlinth, Alignment.TOP_RIGHT); layoutPlintharea.setMargin(true); layoutPlintharea.addComponent(new ComponentIterPlinthArea("Ground Floor", "", "")); layoutPlintharea.addComponent(new ComponentIterPlinthArea("Portico and Stair", "", "")); //for Valuation Details layoutValuationDetails.addComponent(btnAddValDtls); layoutValuationDetails1.setColumns(8); layoutValuationDetails1.setSpacing(true); layoutValuationDetails.setComponentAlignment(btnAddValDtls, Alignment.TOP_RIGHT); layoutValuationDetails1.addComponent(lblParticular); layoutValuationDetails1.addComponent(lblPlinthArea); layoutValuationDetails1.addComponent(lblRoofHt); layoutValuationDetails1.addComponent(lblBuildAge); layoutValuationDetails1.addComponent(lblRate); layoutValuationDetails1.addComponent(lblReplace); layoutValuationDetails1.addComponent(lblDepreciation); layoutValuationDetails1.addComponent(lblNetvalue); layoutValuationDetails1.setComponentAlignment(lblParticular, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setComponentAlignment(lblPlinthArea, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setComponentAlignment(lblRoofHt, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setComponentAlignment(lblBuildAge, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setComponentAlignment(lblRate, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setComponentAlignment(lblReplace, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setComponentAlignment(lblDepreciation, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setComponentAlignment(lblNetvalue, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setWidth("650px"); layoutValuationDetails.addComponent(layoutValuationDetails1); layoutValuationDetails.addComponent(layoutValuationDetails2); layoutValuationDetails.setWidth("100%"); layoutValuationDetails.setMargin(true); ValuationDetailsList obj = new ValuationDetailsList(); ValuationDetailsList obj1 = new ValuationDetailsList(); obj.setFloorDtlsLabel("Ground Floor Building"); obj1.setFloorDtlsLabel("First Floor Building"); layoutValuationDetails2.addComponent(new ComponenetIterValuationDetails(obj)); layoutValuationDetails2.addComponent(new ComponenetIterValuationDetails(obj1)); // for Build Specification panelBuildSpecfication.addComponent(btnAddBuildSpec); panelBuildSpecfication.setComponentAlignment(btnAddBuildSpec, Alignment.TOP_RIGHT); panelBuildSpecfication.addComponent(new ComponentIterBuildingSpecfication(null, true, true, true)); panelBuildSpecfication.setWidth("100%"); //for Calculation-extra Items layoutExtraItems.setCaption("Extra Items"); layoutExtraItems.setWidth("420px"); layoutExtraItems.addComponent(btnDynamicExtra); layoutExtraItems.setComponentAlignment(btnDynamicExtra, Alignment.TOP_RIGHT); layoutExtraItems.addComponent(new ComponentIterExtraItems(null, "")); layoutAdditionItem.addComponent(btnDynamicAdditional); layoutAdditionItem.setComponentAlignment(btnDynamicAdditional, Alignment.TOP_RIGHT); layoutAdditionItem.addComponent(new ComponentIterAdditionalItems(null, "")); layoutAdditionItem.setCaption("Additional Items"); layoutAdditionItem.setWidth("400px"); layoutExtraAddItems1.setSpacing(true); layoutExtraAddItems1.setMargin(true); layoutExtraAddItems.setColumns(2); layoutExtraAddItems.addComponent(layoutExtraItems); layoutExtraAddItems.addComponent(layoutAdditionItem); layoutExtraAddItems1.addComponent(layoutExtraAddItems); //for Miscellaneous layoutMiscellaneous.setCaption("Miscellaneous"); layoutMiscellaneous.setWidth("420px"); layoutMiscellaneous.addComponent(btnDynamicMiscell); layoutMiscellaneous.setComponentAlignment(btnDynamicMiscell, Alignment.TOP_RIGHT); layoutMiscellaneous.addComponent(new ComponentIterMiscellaneous(null, "")); layoutServices.setCaption("Services"); layoutServices.setWidth("400px"); layoutServices.addComponent(btnDynamicServices); layoutServices.setComponentAlignment(btnDynamicServices, Alignment.TOP_RIGHT); layoutServices.addComponent(new ComponentIerServices(null, "")); layoutMiscellService1.setSpacing(true); layoutMiscellService1.setMargin(true); layoutMiscellService.setColumns(2); layoutMiscellService.addComponent(layoutMiscellaneous); layoutMiscellService.addComponent(layoutServices); layoutMiscellService1.addComponent(layoutMiscellService); // for Guideline area layoutGuideline.addComponent(btnAddGuideline); layoutGuideline.setComponentAlignment(btnAddGuideline, Alignment.TOP_RIGHT); layoutGuideline.setMargin(true); layoutGuideline.addComponent(new ComponentIterGuideline("Land", "", "", "")); layoutGuideline.addComponent(new ComponentIterGuideline("Building", "", "", "")); // for guide line reference streetLayout.addComponent(slStreetSerNo); streetLayout.addComponent(tfStreetName); layoutGuidelineReference1.setColumns(4); layoutGuidelineReference1.setSpacing(true); layoutGuidelineReference1.addComponent(tfZone); layoutGuidelineReference1.addComponent(tfSRO); layoutGuidelineReference1.addComponent(tfVillage); layoutGuidelineReference1.addComponent(tfRevnueDist); layoutGuidelineReference1.addComponent(tfTalukName); layoutGuidelineReference1.addComponent(streetLayout); layoutGuidelineReference1.addComponent(tfGuidelineValue); layoutGuidelineReference1.addComponent(tfGuidelineValueMatric); layoutGuidelineReference1.addComponent(slClassification); layoutGuidelineReference1.setMargin(true); layoutGuidelineReference.setSpacing(true); layoutGuidelineReference.addComponent(layoutGuidelineReference1); //add components in main panel layoutMainForm.addComponent(PanelGenerator.createPanel(accordion)); layoutEvaluationDetails.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutEvaluationDetails), "Evaluation Details"); layoutOwnerDetails.setStyleName("bluebar"); layoutAssetDetails.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutAssetOwner), "Owner Details/Asset Details"); layoutNormalLegal.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutNormalLegal), "Document Details"); panelAdjoinProperties.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(panelAdjoinProperties), "Adjoining Properties"); panelDimension.setStyleName("bluebar"); accordion.addTab(panelDimension, "Dimension"); layoutmachingBoundary.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutmachingBoundary), "Matching of Boundaries And Tenure/Occupancy Details"); layoutNoofRooms.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutNoofRooms), "No. of Rooms/No. of Floors"); layoutAreaDetails.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutAreaDetails), "Area Details of the Property"); layoutValuationLand.setStyleName("bluebar"); accordion.addTab(layoutValuationLand, "Valuation of Land"); layoutConstValuation.setStyleName("bluebar"); layoutPlanApproval.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutPlanApproval), "Details of Plan Approval"); accordion.addTab(PanelGenerator.createPanel(layoutConstValuation), "Valuation of Building"); panelBuildSpecfication.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(panelBuildSpecfication), "Specification of the building"); layoutValuationDetails.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutValuationDetails), "Details of Valuation"); layoutExtraAddItems1.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutExtraAddItems1), "Extra/Additional Items"); layoutMiscellService1.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutMiscellService1), "Miscellaneous/Services"); layoutGuideline.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutGuideline), "Guideline Details"); layoutGuidelineReference.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutGuidelineReference), "Guideline Reference Details"); layoutPlintharea.setStyleName("bluebar"); layoutPropertyValue.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutPropertyValue), "Property Value Details"); layoutPlintharea.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutPlintharea), "Plinth Area Details"); layoutConstruction.setStyleName("bluebar"); layoutViolation.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutConstViolation), "Construction/Violation Details"); this.accordion.addListener(new SelectedTabChangeListener() { public void selectedTabChange(SelectedTabChangeEvent event) { if (event.getTabSheet().getSelectedTab().equals(panelDimension)) { Iterator<Component> myComps = panelDimension.getComponentIterator(); BigDecimal siteArea = new BigDecimal(0.00); while (myComps.hasNext()) { final Component component = myComps.next(); int i = 1; if (component instanceof ComponentIterDimensionofPlot) { ComponentIterDimensionofPlot mycomponent = (ComponentIterDimensionofPlot) component; List<TPemCmPropDimension> getList = mycomponent.getDimensionPropertyList(); try { List<String> mylist = mycomponent.getLeastValaue(); siteArea = siteArea.add(new BigDecimal(mylist.get(0).replaceAll("[^\\d.]", ""))); tfNorthandSouth.setValue(mylist.get(1)); tfSiteArea.setValue(siteArea.toString()); } catch (Exception e) { logger.info("Error-->" + e); } } } BigDecimal site = new BigDecimal(0.00); BigDecimal fair = new BigDecimal(1.00); BigDecimal salbale = new BigDecimal(435.60); try { site = new BigDecimal(tfSiteArea.getValue().replaceAll("[^\\d.]", "")); } catch (Exception e) { site = new BigDecimal("0.00"); } try { site.divide(salbale, 2, RoundingMode.HALF_UP).toPlainString(); fair.multiply(site.divide(salbale, 2, RoundingMode.HALF_UP)) .multiply(new BigDecimal(tfAdopetdMarketRate.getValue().replaceAll("[^\\d.]", ""))); tfSiteArea.setValue(site.toString() + " sft (or) " + site.divide(salbale, 2, RoundingMode.HALF_UP).toPlainString() + " cents"); tfSalableArea.setValue(site.toString() + " sft (or) " + site.divide(salbale, 2, RoundingMode.HALF_UP).toPlainString() + " cents"); tfAreaofLand.setValue(site.toString() + " sft (or) " + site.divide(salbale, 2, RoundingMode.HALF_UP).toPlainString() + " cents"); tfFairMarketRate.setValue(XMLUtil.IndianFormat(new BigDecimal(fair .multiply(site.divide(salbale, 2, RoundingMode.HALF_UP)) .multiply(new BigDecimal(tfAdopetdMarketRate.getValue().replaceAll("[^\\d.]", ""))) .toString()))); } catch (Exception e) { } } } }); layoutMainForm.setMargin(true); layoutMainForm.setSpacing(true); // for main panel layoutButton2.setSpacing(true); btnSave.setStyleName("savebt"); btnCancel.setStyleName("cancelbt"); //saveExcel.addStyleName("downloadbt"); btnSubmit.setStyleName("submitbt"); layoutButton2.addComponent(btnSave); layoutButton2.addComponent(btnSubmit); //layoutButton2.addComponent(saveExcel); layoutButton2.addComponent(btnCancel); btnSave.setVisible(false); btnCancel.setVisible(false); btnSubmit.setVisible(false); //saveExcel.setVisible(false); // Initaited the Label Function here by Hohul lblTableTitle = new Label(); lblSaveNotification = new Label(); lblSaveNotification.setContentMode(ContentMode.HTML); lblNotificationIcon = new Label(); lblTableTitle.setValue("<B> Action:</B>"); lblTableTitle.setContentMode(ContentMode.HTML); lblFormTittle = new Label(); lblFormTittle.setContentMode(ContentMode.HTML); lblFormTittle.setValue(" <b>" + screenName + "</b> :: Home"); lblFormTitle1 = new Label(); lblFormTitle1.setContentMode(ContentMode.HTML); lblFormTitle1.setValue(" <b>" + screenName + "</b> :: "); lblAddEdit = new Label(); lblAddEdit.setContentMode(ContentMode.HTML); // Button Back declaration by Hohul btnBack = new Button("Home", this); btnBack.setStyleName("link"); // Bread Scrumbs initiated here by Hohul hlBreadCrumbs = new HorizontalLayout(); hlBreadCrumbs.addComponent(lblFormTitle1); hlBreadCrumbs.addComponent(btnBack); hlBreadCrumbs.setComponentAlignment(btnBack, Alignment.TOP_CENTER); hlBreadCrumbs.addComponent(lblAddEdit); hlBreadCrumbs.setComponentAlignment(lblAddEdit, Alignment.MIDDLE_CENTER); hlBreadCrumbs.setVisible(false); /*tfEvaluationNumber.addValidator(new IntegerValidator("Enter numbers only")); tfEvaluationNumber.addBlurListener(new SaarcValidate(tfEvaluationNumber));*/ tfEvaluationNumber.setImmediate(true); tfEvaluationNumber.addBlurListener(new BlurListener() { private static final long serialVersionUID = 1L; public void blur(BlurEvent event) { // TODO Auto-generated method stub if (!tfEvaluationNumber.isReadOnly()) { tfEvaluationNumber.setComponentError(null); try { tfEvaluationNumber.setComponentError(null); String evalno = tfEvaluationNumber.getValue().toString(); count = beanEvaluation.getEvalNoCount(evalno); if (tfEvaluationNumber.getValue() != null && tfEvaluationNumber.getValue().trim().length() > 0) { if (count == 0) { tfEvaluationNumber.setComponentError(null); } else { tfEvaluationNumber .setComponentError(new UserError("Evaluation number is already Exist")); } } } catch (Exception e) { } } } }); /*String basepath = VaadinService.getCurrent() .getBaseDirectory().getAbsolutePath(); Resource res = new FileResource(new File(basepath + "/WEB-INF/view/channel.doc")); FileDownloader fd = new FileDownloader(res); fd.extend(saveExcel); */ mainPanel.addComponent(layoutMainForm); //mainPanel.addComponent(layoutButton2); //mainPanel.setComponentAlignment(layoutButton2, Alignment.BOTTOM_RIGHT); mainPanel.setVisible(false); // for search panel // Added by Hohul -----> For Search Panel Layouts FormLayout flSearchEvalNumber = new FormLayout(); flSearchEvalNumber.addComponent(tfSearchEvalNumber); FormLayout flSearchBankbranch = new FormLayout(); flSearchBankbranch.addComponent(tfSearchBankbranch); FormLayout flSearchCustomer = new FormLayout(); flSearchCustomer.addComponent(tfSearchCustomer); HorizontalLayout hlSearchComponentLayout = new HorizontalLayout(); hlSearchComponentLayout.addComponent(flSearchEvalNumber); hlSearchComponentLayout.addComponent(flSearchBankbranch); hlSearchComponentLayout.addComponent(flSearchCustomer); hlSearchComponentLayout.setSpacing(true); hlSearchComponentLayout.setMargin(true); //Initialization and properties for btnDownload btnDownload = new Button("Download"); //btnDownload.setDescription("Download"); btnDownload.addStyleName("downloadbt"); btnDownload.addClickListener(new ClickListener() { @Override public void buttonClick(ClickEvent event) { // UI.getCurrent()..clearDashboardButtonBadge(); event.getButton().removeStyleName("unread"); if (notifications != null && notifications.getUI() != null) notifications.close(); else { buildNotifications(event); UI.getCurrent().addWindow(notifications); notifications.focus(); ((VerticalLayout) UI.getCurrent().getContent()) .addLayoutClickListener(new LayoutClickListener() { @Override public void layoutClick(LayoutClickEvent event) { notifications.close(); ((VerticalLayout) UI.getCurrent().getContent()).removeLayoutClickListener(this); } }); } } }); hlFileDownloadLayout = new HorizontalLayout(); hlFileDownloadLayout.setSpacing(true); hlFileDownloadLayout.addComponent(btnDownload); hlFileDownloadLayout.setComponentAlignment(btnDownload, Alignment.MIDDLE_CENTER); VerticalLayout vlSearchandResetButtonLAyout = new VerticalLayout(); vlSearchandResetButtonLAyout.setSpacing(true); vlSearchandResetButtonLAyout.addComponent(btnReset); vlSearchandResetButtonLAyout.setWidth("100"); vlSearchandResetButtonLAyout.addStyleName("topbarthree"); vlSearchandResetButtonLAyout.setMargin(true); HorizontalLayout hlSearchComponentandButtonLayout = new HorizontalLayout(); hlSearchComponentandButtonLayout.setSizeFull(); hlSearchComponentandButtonLayout.setSpacing(true); hlSearchComponentandButtonLayout.addComponent(hlSearchComponentLayout); hlSearchComponentandButtonLayout.setComponentAlignment(hlSearchComponentLayout, Alignment.MIDDLE_LEFT); hlSearchComponentandButtonLayout.addComponent(vlSearchandResetButtonLAyout); hlSearchComponentandButtonLayout.setComponentAlignment(vlSearchandResetButtonLAyout, Alignment.MIDDLE_RIGHT); hlSearchComponentandButtonLayout.setExpandRatio(vlSearchandResetButtonLAyout, 1); final VerticalLayout vlSearchComponentandButtonLayout = new VerticalLayout(); vlSearchComponentandButtonLayout.setSpacing(true); vlSearchComponentandButtonLayout.setSizeFull(); vlSearchComponentandButtonLayout.addComponent(hlSearchComponentandButtonLayout); /* layoutSearch.addComponent(tfSearchEvalNumber); layoutSearch.addComponent(tfSearchBankbranch); layoutSearch.addComponent(tfSearchCustomer); //layoutSearch.addComponent(btnSearch); layoutSearch.addComponent(btnReset); //layoutSearch.setComponentAlignment(btnSearch, Alignment.BOTTOM_LEFT); layoutSearch.setComponentAlignment(btnReset, Alignment.BOTTOM_LEFT);*/ //btnSearch.addStyleName("default"); btnReset.addStyleName("resetbt"); tfSearchCustomer.setImmediate(true); tfSearchCustomer.addListener(new TextChangeListener() { private static final long serialVersionUID = 1L; SimpleStringFilter filter = null; public void textChange(TextChangeEvent event) { Filterable f = (Filterable) tblEvalDetails.getContainerDataSource(); if (filter != null) f.removeContainerFilter(filter); filter = new SimpleStringFilter("custName", event.getText(), true, false); f.addContainerFilter(filter); total = f.size(); tblEvalDetails.setColumnFooter("lastUpdateDt", "No. of Records:" + total); } }); tfSearchEvalNumber.setImmediate(true); tfSearchEvalNumber.addListener(new TextChangeListener() { private static final long serialVersionUID = 1L; SimpleStringFilter filter = null; public void textChange(TextChangeEvent event) { Filterable f = (Filterable) tblEvalDetails.getContainerDataSource(); if (filter != null) f.removeContainerFilter(filter); filter = new SimpleStringFilter("evalNo", event.getText(), true, false); f.addContainerFilter(filter); total = f.size(); tblEvalDetails.setColumnFooter("lastUpdateDt", "No. of Records:" + total); } }); tfSearchBankbranch.setImmediate(true); tfSearchBankbranch.addValueChangeListener(new Property.ValueChangeListener() { private static final long serialVersionUID = 1L; Filter filter = null; @Override public void valueChange(ValueChangeEvent event) { // TODO Auto-generated method stub try { String strBankBranch = tfSearchBankbranch.getValue().toString(); Filterable f = (Filterable) tblEvalDetails.getContainerDataSource(); if (filter != null) f.removeContainerFilter(filter); filter = new Compare.Equal("bankBranch", strBankBranch); f.addContainerFilter(filter); f.addContainerFilter(filter); total = f.size(); tblEvalDetails.setColumnFooter("lastUpdateDt", "No. of Records:" + total); } catch (Exception e) { } } }); /*layoutSearch.setSpacing(true); layoutSearch.setMargin(true);*/ /*lblHeading=new Label("Search"); lblHeading.setStyleName("h4"); searchPanel.addComponent(lblHeading);*/ //searchPanel.addComponent(PanelGenerator.createPanel(layoutSearch)); searchPanel.addComponent(PanelGenerator.createPanel(vlSearchComponentandButtonLayout)); searchPanel.setMargin(true); // Search panel functions ends here by hohul // Add Layout table panel by Hohul HorizontalLayout flTableCaption = new HorizontalLayout(); flTableCaption.addComponent(lblTableTitle); flTableCaption.setComponentAlignment(lblTableTitle, Alignment.MIDDLE_CENTER); flTableCaption.addStyleName("lightgray"); flTableCaption.setHeight("25px"); flTableCaption.setWidth("60px"); lblNoofRecords = new Label(" ", ContentMode.HTML); lblNoofRecords.addStyleName("lblfooter"); HorizontalLayout hlTableTittleLayout = new HorizontalLayout(); hlTableTittleLayout.addComponent(flTableCaption); hlTableTittleLayout.addComponent(btnAdd); hlTableTittleLayout.addComponent(btnEdit); hlTableTittleLayout.addComponent(btnView); hlTableTittleLayout.setHeight("25px"); hlTableTittleLayout.setSpacing(true); HorizontalLayout hlTableTitleandCaptionLayout = new HorizontalLayout(); hlTableTitleandCaptionLayout.addStyleName("topbarthree"); hlTableTitleandCaptionLayout.setWidth("100%"); hlTableTitleandCaptionLayout.addComponent(hlTableTittleLayout); hlTableTitleandCaptionLayout.addComponent(hlFileDownloadLayout); hlTableTitleandCaptionLayout.setComponentAlignment(hlFileDownloadLayout, Alignment.MIDDLE_RIGHT); hlTableTitleandCaptionLayout.setHeight("28px"); // for table panel btnAdd.addStyleName("add"); btnEdit.addStyleName("editbt"); btnView.addStyleName("view"); btnView.setEnabled(false); hlAddEditLayout.addStyleName("topbarthree"); hlAddEditLayout.setWidth("100%"); hlAddEditLayout.addComponent(hlTableTitleandCaptionLayout); hlAddEditLayout.setHeight("28px"); // Added Action Label to Table layoutTable.addComponent(hlAddEditLayout); layoutTable.setComponentAlignment(hlAddEditLayout, Alignment.TOP_LEFT); layoutTable.addComponent(tblEvalDetails); tablePanel.addComponent(layoutTable); tablePanel.setWidth("100%"); tablePanel.setMargin(true); layoutPage.addComponent(mainPanel); layoutPage.addComponent(searchPanel); layoutPage.addComponent(tablePanel); // Added labels and titles to respective Location by Hohul HorizontalLayout hlNotificationLayout = new HorizontalLayout(); hlNotificationLayout.addComponent(lblNotificationIcon); hlNotificationLayout.setComponentAlignment(lblNotificationIcon, Alignment.MIDDLE_LEFT); hlNotificationLayout.addComponent(lblSaveNotification); hlNotificationLayout.setComponentAlignment(lblSaveNotification, Alignment.MIDDLE_LEFT); hlHeaderLayout.addComponent(lblFormTittle); hlHeaderLayout.setComponentAlignment(lblFormTittle, Alignment.MIDDLE_LEFT); hlHeaderLayout.addComponent(hlBreadCrumbs); hlHeaderLayout.setComponentAlignment(hlBreadCrumbs, Alignment.MIDDLE_LEFT); hlHeaderLayout.addComponent(hlNotificationLayout); hlHeaderLayout.setComponentAlignment(hlNotificationLayout, Alignment.MIDDLE_LEFT); hlHeaderLayout.addComponent(layoutButton2); hlHeaderLayout.setComponentAlignment(layoutButton2, Alignment.MIDDLE_RIGHT); hlHeaderLayout.addComponent(layoutButton2); hlHeaderLayout.setComponentAlignment(layoutButton2, Alignment.BOTTOM_RIGHT); // load Component list values loadComponentListValues(); //setTableProperties(); populateAndConfig(false); }
From source file:com.gnts.pem.txn.synd.SyndConstruction.java
License:Open Source License
@SuppressWarnings("deprecation") void buildView(VerticalLayout layoutPage, HorizontalLayout hlHeaderLayout) { // for component width hlHeaderLayout.removeAllComponents(); setComponentStyle();//from w w w. j a v a 2 s . c o m tblEvalDetails = new Table(); tblEvalDetails.setStyleName(Runo.TABLE_SMALL); tblEvalDetails.setPageLength(14); tblEvalDetails.setSizeFull(); tblEvalDetails.setFooterVisible(true); tblEvalDetails.setSelectable(true); tblEvalDetails.setImmediate(true); tblEvalDetails.setColumnCollapsingAllowed(true); // for evaluation details tfEvaluationPurpose.setValue("Collateral Security to the Bank"); slStreetSerNo.addItem("STREET NAME"); slStreetSerNo.addItem("SURVEY NO"); slStreetSerNo.setNullSelectionAllowed(false); tfEvaluationNumber.setRequired(true); tfBankBranch.setRequired(true); dfDateofValuation.setRequired(true); tfEvaluationPurpose.setRequired(true); layoutEvaluationDetails1.setColumns(4); layoutEvaluationDetails1.addComponent(tfEvaluationNumber); layoutEvaluationDetails1.addComponent(tfBankBranch); layoutEvaluationDetails1.addComponent(tfEvaluationPurpose); layoutEvaluationDetails1.addComponent(tfValuatedBy); layoutEvaluationDetails1.addComponent(dfDateofValuation); layoutEvaluationDetails1.addComponent(dfVerifiedDate); layoutEvaluationDetails1.addComponent(tfVerifiedBy); layoutEvaluationDetails1.addComponent(tfDynamicEvaluation1); layoutEvaluationDetails1.addComponent(tfDynamicEvaluation2); tfDynamicEvaluation1.setVisible(false); tfDynamicEvaluation2.setVisible(false); layoutEvaluationDetails1.setSpacing(true); layoutEvaluationDetails1.setMargin(true); layoutEvaluationDetails.addComponent(btnDynamicEvaluation1); layoutEvaluationDetails.setComponentAlignment(btnDynamicEvaluation1, Alignment.TOP_RIGHT); layoutEvaluationDetails.addComponent(layoutEvaluationDetails1); // for customer details tfDynamicCustomer1.setVisible(false); tfDynamicCustomer2.setVisible(false); layoutCustomerDetail1.setColumns(4); layoutCustomerDetail1.addComponent(tfCustomerName); layoutCustomerDetail1.addComponent(slPropertyDesc); layoutCustomerDetail1.addComponent(tfDynamicCustomer1); layoutCustomerDetail1.addComponent(tfDynamicCustomer2); layoutCustomerDetail1.setSpacing(true); layoutCustomerDetail1.setMargin(true); tfCustomerName.setRequired(true); layoutCustomerDetail.addComponent(btnDynamicCustomer); layoutCustomerDetail.setComponentAlignment(btnDynamicCustomer, Alignment.TOP_RIGHT); layoutCustomerDetail.addComponent(layoutCustomerDetail1); // for asset details VerticalLayout formAsset1 = new VerticalLayout(); VerticalLayout formAsset2 = new VerticalLayout(); VerticalLayout formAsset3 = new VerticalLayout(); VerticalLayout formAsset4 = new VerticalLayout(); formAsset1.setSpacing(true); formAsset2.setSpacing(true); formAsset4.setSpacing(true); formAsset1.addComponent(tfCustomerName); formAsset1.addComponent(tfLandMark); formAsset1.addComponent(slPropertyDesc); formAsset2.addComponent(tfCustomerAddr); formAsset3.addComponent(tfPropertyAddress); formAsset3.addComponent(chkSameAddress); formAsset4.addComponent(tfDynamicAsset1); formAsset4.addComponent(tfDynamicAsset2); tfDynamicAsset1.setVisible(false); tfDynamicAsset2.setVisible(false); chkSameAddress.setImmediate(true); chkSameAddress.addListener(new Property.ValueChangeListener() { private static final long serialVersionUID = 1L; public void valueChange(ValueChangeEvent event) { if (chkSameAddress.getValue().equals(true)) { tfPropertyAddress.setValue(tfCustomerAddr.getValue()); } else { tfPropertyAddress.setValue(""); } } }); layoutAssetDetails1.setSpacing(true); layoutAssetDetails1.setColumns(4); layoutAssetDetails1.addComponent(formAsset1); layoutAssetDetails1.addComponent(formAsset2); layoutAssetDetails1.addComponent(formAsset3); layoutAssetDetails1.addComponent(formAsset4); layoutAssetDetails1.setMargin(true); layoutAssetDetails.addComponent(btnDynamicAsset); layoutAssetDetails.setComponentAlignment(btnDynamicAsset, Alignment.TOP_RIGHT); layoutAssetDetails.addComponent(layoutAssetDetails1); lblHeading = new Label("Owner Details"); layoutAssetOwner.addComponent(lblHeading); lblHeading.setStyleName("h4"); layoutAssetOwner.addComponent(PanelGenerator.createPanel(layoutOwnerDetails)); lblHeading = new Label("Asset Details"); layoutAssetOwner.addComponent(lblHeading); lblHeading.setStyleName("h4"); layoutAssetOwner.addComponent(PanelGenerator.createPanel(layoutAssetDetails)); // for Owner Details layoutOwnerDetails.addComponent(btnAddOwner); layoutOwnerDetails.setComponentAlignment(btnAddOwner, Alignment.TOP_RIGHT); layoutOwnerDetails1.setColumns(4); layoutOwnerDetails1.addComponent(new ComponentIterOwnerDetails("", "")); layoutOwnerDetails.addComponent(layoutOwnerDetails1); layoutOwnerDetails1.setSpacing(true); layoutOwnerDetails1.setMargin(true); // for document details panelNormalDocumentDetails.addComponent(btnAddNorDoc); panelNormalDocumentDetails.setComponentAlignment(btnAddNorDoc, Alignment.TOP_RIGHT); panelNormalDocumentDetails.addComponent(new ComponentIteratorNormlDoc(null, null, "", "")); panelNormalDocumentDetails.setMargin(true); panelLegalDocumentDetails.addComponent(btnAddLegalDoc); panelLegalDocumentDetails.setComponentAlignment(btnAddLegalDoc, Alignment.TOP_RIGHT); panelLegalDocumentDetails.addComponent(new ComponentIteratorLegalDoc("", "", null)); panelLegalDocumentDetails.setMargin(true); layoutNormalLegal.addComponent(PanelGenerator.createPanel(panelNormalDocumentDetails)); lblHeading = new Label("Legal Documents"); layoutNormalLegal.addComponent(lblHeading); lblHeading.setStyleName("h4"); layoutNormalLegal.addComponent(PanelGenerator.createPanel(panelLegalDocumentDetails)); layoutNormalLegal.setMargin(true); // for adjoin properties // panelAdjoinProperties.setCaption("Adjoining Properties"); panelAdjoinProperties.addComponent(btnAddAdjoinProperty); panelAdjoinProperties.setComponentAlignment(btnAddAdjoinProperty, Alignment.BOTTOM_RIGHT); panelAdjoinProperties.addComponent(new ComponentIteratorAdjoinProperty(null, true, true, true)); // for dimensions // panelDimension.setCaption("Dimensions"); panelDimension.addComponent(btnAddDimension); panelDimension.setComponentAlignment(btnAddDimension, Alignment.BOTTOM_RIGHT); panelDimension.addComponent(new ComponentIterDimensionofPlot(null, true, true, true)); panelNormalDocumentDetails.setWidth("100%"); panelLegalDocumentDetails.setWidth("100%"); panelAdjoinProperties.setStyleName("width:100%;display:block;"); // for layoutmachingBoundary1.setSpacing(true); tfDynamicmatching1.setVisible(true); tfDynamicmatching2.setVisible(true); layoutmachingBoundary2.addComponent(btnDynamicmatching); layoutmachingBoundary2.setComponentAlignment(btnDynamicmatching, Alignment.TOP_RIGHT); layoutmachingBoundary1.setSpacing(true); layoutmachingBoundary1.addComponent(slMatchingBoundary); layoutmachingBoundary1.addComponent(slPlotDemarcated); layoutmachingBoundary1.addComponent(slApproveLandUse); layoutmachingBoundary1.addComponent(slTypeofProperty); layoutmachingBoundary1.addComponent(tfDynamicmatching1); layoutmachingBoundary1.addComponent(tfDynamicmatching2); layoutmachingBoundary1.setSpacing(true); layoutmachingBoundary1.setMargin(true); // tenure/occupancy details layoutTenureOccupay.setSpacing(true); layoutTenureOccupay1.setSpacing(true); layoutTenureOccupay2.addComponent(btnDynamicTenure); layoutTenureOccupay2.setComponentAlignment(btnDynamicTenure, Alignment.TOP_RIGHT); layoutTenureOccupay.setColumns(2); layoutTenureOccupay1.addComponent(tfStatusofTenure); layoutTenureOccupay1.addComponent(slOwnedorRent); layoutTenureOccupay1.addComponent(tfNoOfYears); layoutTenureOccupay1.addComponent(tfRelationship); layoutTenureOccupay1.addComponent(tfDynamicTenure1); layoutTenureOccupay1.addComponent(tfDynamicTenure2); layoutmachingBoundary2.addComponent(layoutmachingBoundary1); layoutTenureOccupay2.addComponent(layoutTenureOccupay1); layoutTenureOccupay.addComponent(PanelGenerator.createPanel(layoutmachingBoundary2)); layoutTenureOccupay.addComponent(PanelGenerator.createPanel(layoutTenureOccupay2)); tfDynamicTenure1.setVisible(false); tfDynamicTenure2.setVisible(false); layoutmachingBoundary1.setMargin(true); layoutTenureOccupay1.setMargin(true); layoutmachingBoundary.addComponent(layoutTenureOccupay); layoutTenureOccupay1.setMargin(true); layoutmachingBoundary.setMargin(true); // for no of rooms layoutNoofRooms2.addComponent(btnDynamicRooms); layoutNoofRooms2.setComponentAlignment(btnDynamicRooms, Alignment.TOP_RIGHT); layoutNoofRooms2.setMargin(true); layoutNoofRooms1.addComponent(tfNoofRooms); layoutNoofRooms1.addComponent(tfLivingDining); layoutNoofRooms1.addComponent(tfBedRooms); layoutNoofRooms1.addComponent(tfKitchen); layoutNoofRooms1.addComponent(tfToilets); layoutNoofRooms1.addComponent(tfDynamicRooms1); layoutNoofRooms1.addComponent(tfDynamicRooms2); tfDynamicRooms1.setVisible(false); tfDynamicRooms2.setVisible(false); layoutNoofRooms1.setSpacing(true); layoutNoofRooms2.addComponent(layoutNoofRooms1); // no of floors layoutNoofFloors.setColumns(2); layoutNoofFloors2.setMargin(true); layoutNoofFloors2.addComponent(btnDynamicFloor); layoutNoofFloors2.setComponentAlignment(btnDynamicFloor, Alignment.TOP_RIGHT); layoutNoofFloors1.addComponent(tfTotNoofFloors); layoutNoofFloors1.addComponent(tfPropertyLocated); layoutNoofFloors1.addComponent(tfApproxAgeofBuilding); layoutNoofFloors1.addComponent(tfResidualAgeofBuilding); layoutNoofFloors1.addComponent(slTypeofStructures); layoutNoofFloors1.addComponent(tfDynamicFloors1); layoutNoofFloors1.addComponent(tfDynamicFloors2); tfDynamicFloors1.setVisible(false); tfDynamicFloors2.setVisible(false); layoutNoofFloors1.setSpacing(true); layoutNoofFloors2.addComponent(layoutNoofFloors1); layoutNoofFloors.setSpacing(true); layoutNoofFloors.addComponent(PanelGenerator.createPanel(layoutNoofFloors2)); layoutNoofFloors.addComponent(PanelGenerator.createPanel(layoutNoofRooms2)); layoutNoofRooms.addComponent(layoutNoofFloors); layoutNoofRooms.setMargin(true); // construction // layoutConstruction.setCaption("Construction"); layoutConstruction1.setSpacing(true); layoutConstruction1.setColumns(4); layoutConstruction1.addComponent(tfStageofConst); layoutConstruction1.addComponent(tfDynamicConstruction1); layoutConstruction1.addComponent(tfDynamicConstruction2); tfDynamicConstruction1.setVisible(false); tfDynamicConstruction2.setVisible(false); layoutConstruction.addComponent(btnDynamicConstruction); layoutConstruction.setComponentAlignment(btnDynamicConstruction, Alignment.TOP_RIGHT); layoutConstruction.addComponent(layoutConstruction1); layoutConstruction.setMargin(true); // for violation // layoutViolation.setCaption("Violation Details"); layoutViolation1.setSpacing(true); layoutViolation1.setColumns(4); layoutViolation1.addComponent(tfAnyViolation); layoutViolation1.addComponent(tfDynamicViolation1); layoutViolation1.addComponent(tfDynamicViolation2); tfDynamicViolation1.setVisible(false); tfDynamicViolation2.setVisible(false); layoutViolation.addComponent(btnDynamicViolation); layoutViolation.setComponentAlignment(btnDynamicViolation, Alignment.TOP_RIGHT); layoutViolation.addComponent(layoutViolation1); layoutViolation.setMargin(true); layoutConstViolation.addComponent(PanelGenerator.createPanel(layoutConstruction)); layoutConstViolation.addComponent(PanelGenerator.createPanel(layoutViolation)); layoutConstViolation.setSpacing(true); layoutConstViolation.setMargin(true); // area details of the property // layoutAreaDetails.setCaption("Area Details of the Property"); layoutAreaDetails1.setSpacing(true); layoutAreaDetails1.setColumns(4); layoutAreaDetails1.addComponent(tfSiteArea); layoutAreaDetails1.addComponent(tfPlinthArea); layoutAreaDetails1.addComponent(tfCarpetArea); layoutAreaDetails1.addComponent(tfSalableArea); layoutAreaDetails1.addComponent(tfRemarks); layoutAreaDetails1.addComponent(tfDynamicAreaDetail1); layoutAreaDetails1.addComponent(tfDynamicAreaDetail2); tfDynamicAreaDetail1.setVisible(false); tfDynamicAreaDetail2.setVisible(false); layoutAreaDetails.addComponent(btnDynamicAreaDetail); layoutAreaDetails.setComponentAlignment(btnDynamicAreaDetail, Alignment.TOP_RIGHT); layoutAreaDetails.addComponent(layoutAreaDetails1); layoutAreaDetails.setMargin(true); // valuation of land layoutValuationLand.setSpacing(true); layoutValuationLand1.setSpacing(true); layoutValuationLand1.addComponent(tfAreaofLand); layoutValuationLand1.addComponent(tfNorthandSouth); layoutValuationLand1.addComponent(tfMarketRate); layoutValuationLand1.addComponent(tfAdopetdMarketRate); layoutValuationLand1.addComponent(tfFairMarketRate); layoutValuationLand1.addComponent(tfRealizabletRate); layoutValuationLand1.addComponent(tfDistressRate); layoutValuationLand1.addComponent(tfGuidelineRate); layoutValuationLand1.addComponent(tfDynamicValuation1); layoutValuationLand1.addComponent(tfDynamicValuation2); tfDynamicValuation1.setVisible(false); tfDynamicValuation2.setVisible(false); tfAdopetdMarketRate.setRequired(true); layoutValuationLand.addComponent(btnDynamicValuation); layoutValuationLand.setComponentAlignment(btnDynamicValuation, Alignment.TOP_RIGHT); layoutValuationLand.addComponent(layoutValuationLand1); layoutValuationLand.setMargin(true); // property value layoutPropertyValue.setSpacing(true); layoutPropertyValue.setMargin(true); layoutPropertyValue1.setColumns(4); layoutPropertyValue1.setSpacing(true); layoutPropertyValue1.addComponent(tfRealizabletRate); layoutPropertyValue1.addComponent(tfDistressRate); layoutPropertyValue1.addComponent(tfGuidelineRate); layoutPropertyValue.addComponent(layoutPropertyValue1); // for details of plan approval layoutPlanApproval1.setColumns(4); formLand.addComponent(slLandandBuilding); formLand.addComponent(tfLandandBuilding); formBuilding.addComponent(slBuilding); formBuilding.addComponent(tfBuilding); layoutPlanApproval1.addComponent(formLand); layoutPlanApproval1.addComponent(formBuilding); layoutPlanApproval1.addComponent(tfPlanApprovedBy); layoutPlanApproval1.addComponent(dfLicenseFrom); layoutPlanApproval1.addComponent(slIsLicenceForced); layoutPlanApproval1.addComponent(slAllApprovalRecved); layoutPlanApproval1.addComponent(slConstAsperAppPlan); layoutPlanApproval1.addComponent(tfDynamicPlanApproval1); layoutPlanApproval1.addComponent(tfDynamicPlanApproval2); tfDynamicPlanApproval1.setVisible(false); tfDynamicPlanApproval2.setVisible(false); layoutPlanApproval1.setSpacing(true); layoutPlanApproval1.setMargin(true); layoutPlanApproval.addComponent(btnDynamicPlanApproval); layoutPlanApproval.setComponentAlignment(btnDynamicPlanApproval, Alignment.TOP_RIGHT); layoutPlanApproval.addComponent(layoutPlanApproval1); // valuation of Construction layoutConstValuation.setSpacing(true); layoutConstValuation1.setSpacing(true); layoutConstValuation1.addComponent(slTypeProperty); layoutConstValuation1.addComponent(slTypeStructure); layoutConstValuation1.addComponent(tfYearConstruction); layoutConstValuation1.addComponent(tfNoFloors); layoutConstValuation1.addComponent(tfConstQuality); layoutConstValuation1.addComponent(slAllapproval); layoutConstValuation1.addComponent(slIsConstruction); layoutConstValuation1.addComponent(tfReason); layoutConstValuation1.addComponent(tfDynamicConstval1); layoutConstValuation1.addComponent(tfDynamicConstval2); tfDynamicConstval1.setVisible(false); tfDynamicConstval2.setVisible(false); layoutConstValuation.addComponent(btnDynamicConstVal); layoutConstValuation.setComponentAlignment(btnDynamicConstVal, Alignment.TOP_RIGHT); layoutConstValuation.addComponent(layoutConstValuation1); layoutConstValuation.setMargin(true); layoutLandConstValuation.setSpacing(true); layoutLandConstValuation.setColumns(2); layoutLandConstValuation.addComponent(PanelGenerator.createPanel(layoutValuationLand)); layoutLandConstValuation.addComponent(PanelGenerator.createPanel(layoutConstValuation)); layoutLandConstValuation1.addComponent(layoutLandConstValuation); layoutLandConstValuation1.setMargin(true); // for plinth area layoutPlintharea.addComponent(btnAddPlinth); layoutPlintharea.setComponentAlignment(btnAddPlinth, Alignment.BOTTOM_RIGHT); layoutPlintharea.setMargin(true); layoutPlintharea.addComponent(new ComponentIterPlinthArea("Ground Floor", "", "")); layoutPlintharea.addComponent(new ComponentIterPlinthArea("Portico and Stair", "", "")); // for Build Specification panelBuildSpecfication.addComponent(btnAddBuildSpec); panelBuildSpecfication.setComponentAlignment(btnAddBuildSpec, Alignment.BOTTOM_RIGHT); panelBuildSpecfication.addComponent(new ComponentIterBuildingSpecfication(null, true, true, true)); panelBuildSpecfication.setWidth("100%"); // for applicant estimate layoutApplicantEstimate.setSpacing(true); layoutApplicantEstimate1.setSpacing(true); layoutApplicantEstimate1.setColumns(2); layoutApplicantEstimate2.setSpacing(true); layoutApplicantEstimate2.setColumns(2); layoutApplicantEstimate3.setSpacing(true); layoutApplicantEstimate3.setColumns(2); layoutApplicantEstimate4.setSpacing(true); layoutApplicantEstimate4.setColumns(2); layoutApplicantEstimate1.addComponent(lblAppEstimate); layoutApplicantEstimate1.addComponent(tfAppEstimate); layoutApplicantEstimate1.addComponent(lblDtlsAppEstimate); layoutApplicantEstimate1.addComponent(tfDtlsAppEstimate); layoutApplicantEstimate1.addComponent(tfDetails1); layoutApplicantEstimate1.addComponent(tfDetailVal1); layoutApplicantEstimate1.addComponent(tfDetails2); layoutApplicantEstimate1.addComponent(tfDetailVal2); layoutApplicantEstimate1.addComponent(tfDetails3); layoutApplicantEstimate1.addComponent(tfDetailVal3); layoutApplicantEstimate2.addComponent(tfDynamicAppEstimate1); layoutApplicantEstimate2.addComponent(tfDynamicAppEstimate2); layoutApplicantEstimate2.addComponent(tfDynamicAppEstimate3); layoutApplicantEstimate2.addComponent(tfDynamicAppEstimate4); layoutApplicantEstimate3.addComponent(tfDynamicAppEstimate5); layoutApplicantEstimate3.addComponent(tfDynamicAppEstimate6); layoutApplicantEstimate3.addComponent(tfDynamicAppEstimate7); layoutApplicantEstimate3.addComponent(tfDynamicAppEstimate8); layoutApplicantEstimate4.addComponent(lblTotal); layoutApplicantEstimate4.addComponent(tfTotalval); layoutApplicantEstimate.addComponent(btnDynamicAppEstimate); layoutApplicantEstimate.setComponentAlignment(btnDynamicAppEstimate, Alignment.TOP_RIGHT); layoutApplicantEstimate.addComponent(layoutApplicantEstimate1); layoutApplicantEstimate.addComponent(layoutApplicantEstimate2); layoutApplicantEstimate.addComponent(layoutApplicantEstimate3); layoutApplicantEstimate.addComponent(layoutApplicantEstimate4); layoutApplicantEstimate2.setVisible(true); layoutApplicantEstimate3.setVisible(true); layoutApplicantEstimate.setMargin(true); tfDynamicAppEstimate2.setValue("0.00"); tfDetailVal2.setValue("0.00"); tfDetailVal1.setValue("0.00"); tfDynamicAppEstimate4.setValue("0.00"); tfDynamicAppEstimate6.setValue("0.00"); tfDynamicAppEstimate8.setValue("0.00"); tfDetailVal3.setValue("0.00"); tfTotalval.setImmediate(true); tfTotalval.addBlurListener(new BlurListener() { private static final long serialVersionUID = 1L; @Override public void blur(BlurEvent event) { // TODO Auto-generated method stub BigDecimal appEstimate = new BigDecimal(0.00); BigDecimal test = new BigDecimal("0.00"); BigDecimal test1 = new BigDecimal("0.00"); BigDecimal test2 = new BigDecimal("0.00"); BigDecimal test3 = new BigDecimal("0.00"); BigDecimal test4 = new BigDecimal("0.00"); BigDecimal test5 = new BigDecimal("0.00"); BigDecimal test6 = new BigDecimal("0.00"); try { test = new BigDecimal(tfDetailVal1.getValue()); } catch (Exception e) { test = new BigDecimal("0.00"); } try { test1 = new BigDecimal(tfDetailVal2.getValue()); } catch (Exception e) { test1 = new BigDecimal("0.00"); } try { test2 = new BigDecimal(tfDetailVal3.getValue()); } catch (Exception e) { test2 = new BigDecimal("0.00"); } try { test3 = new BigDecimal(tfDynamicAppEstimate2.getValue()); } catch (Exception e) { test3 = new BigDecimal("0.00"); } try { test4 = new BigDecimal(tfDynamicAppEstimate4.getValue()); } catch (Exception e) { test4 = new BigDecimal("0.00"); } try { test5 = new BigDecimal(tfDynamicAppEstimate6.getValue()); } catch (Exception e) { test4 = new BigDecimal("0.00"); } try { test6 = new BigDecimal(tfDynamicAppEstimate8.getValue()); } catch (Exception e) { test4 = new BigDecimal("0.00"); } appEstimate = appEstimate.add(test).add(test1).add(test2).add(test3).add(test4).add(test5) .add(test6); tfTotalval.setValue(appEstimate.toString()); tfAppEstimate.setValue(appEstimate.toString()); } }); // for applicant reasonable layoutApplicantReasonable.setSpacing(true); layoutApplicantReasonable1.setSpacing(true); layoutApplicantReasonable2.setSpacing(true); layoutApplicantReasonable1.setColumns(2); layoutApplicantReasonable2.setColumns(2); layoutApplicantReasonable1.setVisible(false); layoutApplicantReasonable2.addComponent(lblAppReasonable); layoutApplicantReasonable2.addComponent(slAppReasonable); layoutApplicantReasonable1.addComponent(lblReasonEstimate); layoutApplicantReasonable1.addComponent(tfReasonEstimateVal); layoutApplicantReasonable1.addComponent(lblDtlsAppReasonable); layoutApplicantReasonable1.addComponent(tfDtlsAppReasonable); layoutApplicantReasonable1.addComponent(tfDetailsReason1); layoutApplicantReasonable1.addComponent(tfDetailReasonVal1); layoutApplicantReasonable1.addComponent(tfDetailsReason2); layoutApplicantReasonable1.addComponent(tfDetailReasonVal2); layoutApplicantReasonable1.addComponent(tfDetailsReason3); layoutApplicantReasonable1.addComponent(tfDetailReasonVal3); layoutApplicantReasonable1.addComponent(tfDynamicAppReason1); layoutApplicantReasonable1.addComponent(tfDynamicAppReason2); layoutApplicantReasonable1.addComponent(tfDynamicAppReason3); layoutApplicantReasonable1.addComponent(tfDynamicAppReason4); layoutApplicantReasonable1.addComponent(lblReasonTotal); layoutApplicantReasonable1.addComponent(tfReasonTotalval); tfDynamicAppReason1.setVisible(false); tfDynamicAppReason2.setVisible(false); tfDynamicAppReason3.setVisible(false); tfDynamicAppReason4.setVisible(false); layoutApplicantReasonable.addComponent(btnDynamicAppReason); layoutApplicantReasonable.setComponentAlignment(btnDynamicAppReason, Alignment.TOP_RIGHT); layoutApplicantReasonable.addComponent(layoutApplicantReasonable2); layoutApplicantReasonable.addComponent(layoutApplicantReasonable1); layoutApplicantReasonable.setMargin(true); tfDetailReasonVal1.setValue("0.00"); tfDetailReasonVal2.setValue("0.00"); tfDetailReasonVal3.setValue("0.00"); tfDynamicAppReason2.setValue("0.00"); tfDynamicAppReason4.setValue("0.00"); tfReasonTotalval.setImmediate(true); tfReasonTotalval.addBlurListener(new BlurListener() { private static final long serialVersionUID = 1L; @Override public void blur(BlurEvent event) { // TODO Auto-generated method stubBigDecimal appEstimate =new BigDecimal appReason = new BigDecimal(0.00); BigDecimal test = new BigDecimal("0.00"); BigDecimal test1 = new BigDecimal("0.00"); BigDecimal test2 = new BigDecimal("0.00"); BigDecimal test3 = new BigDecimal("0.00"); BigDecimal test4 = new BigDecimal("0.00"); try { test = new BigDecimal(tfDetailReasonVal1.getValue()); } catch (Exception e) { test = new BigDecimal("0.00"); } try { test1 = new BigDecimal(tfDetailReasonVal2.getValue()); } catch (Exception e) { test1 = new BigDecimal("0.00"); } try { test2 = new BigDecimal(tfDetailReasonVal3.getValue()); } catch (Exception e) { test2 = new BigDecimal("0.00"); } try { test3 = new BigDecimal(tfDynamicAppReason2.getValue()); } catch (Exception e) { test3 = new BigDecimal("0.00"); } try { test4 = new BigDecimal(tfDynamicAppReason2.getValue()); } catch (Exception e) { test4 = new BigDecimal("0.00"); } appReason = appReason.add(test).add(test1).add(test2).add(test3).add(test4); tfReasonTotalval.setValue(appReason.toString()); tfReasonEstimateVal.setValue(appReason.toString()); } }); slAppReasonable.setImmediate(true); slAppReasonable.setNullSelectionAllowed(false); slAppReasonable.addListener(new Property.ValueChangeListener() { private static final long serialVersionUID = 1L; public void valueChange(ValueChangeEvent event) { if (slAppReasonable.getValue() != null) { if (slAppReasonable.getValue().equals(Common.NO_DESC)) { layoutApplicantReasonable1.setVisible(true); btnDynamicAppReason.setVisible(true); } else { layoutApplicantReasonable1.setVisible(false); btnDynamicAppReason.setVisible(false); } } } }); /*tfEvaluationNumber.addValidator(new IntegerValidator("Enter numbers only")); tfEvaluationNumber.addBlurListener(new SaarcValidate(tfEvaluationNumber));*/ tfEvaluationNumber.setImmediate(true); tfEvaluationNumber.addBlurListener(new BlurListener() { private static final long serialVersionUID = 1L; public void blur(BlurEvent event) { // TODO Auto-generated method stub if (!tfEvaluationNumber.isReadOnly()) { tfEvaluationNumber.setComponentError(null); try { tfEvaluationNumber.setComponentError(null); String evalno = tfEvaluationNumber.getValue().toString(); int count = beanEvaluation.getEvalNoCount(evalno); if (tfEvaluationNumber.getValue() != null && tfEvaluationNumber.getValue().trim().length() > 0) { if (count == 0) { tfEvaluationNumber.setComponentError(null); } else { tfEvaluationNumber .setComponentError(new UserError("Evaluation number is already Exist")); } } } catch (Exception e) { } } } }); // Earth quake layoutEarthquake1.setSpacing(true); layoutEarthquake1.setColumns(4); layoutEarthquake1.addComponent(slEarthQuake); layoutEarthquake1.addComponent(tfDynamicEarthquake1); layoutEarthquake1.addComponent(tfDynamicEarthquake2); tfDynamicEarthquake1.setVisible(false); tfDynamicEarthquake2.setVisible(false); layoutEarthquake.addComponent(btnDynamicEarthQuake); layoutEarthquake.setComponentAlignment(btnDynamicEarthQuake, Alignment.TOP_RIGHT); layoutEarthquake.addComponent(layoutEarthquake1); layoutEarthquake.setMargin(true); // cost of construction layoutCost.setColumns(2); layoutCostConstruction1.setColumns(2); layoutCostConstruction2.setColumns(2); layoutCostConstruction.setSpacing(true); layoutCost.setSpacing(true); layoutCostConstruction2.setSpacing(true); layoutCostConstruction1.setSpacing(true); layoutCostConstruction1.setSpacing(true); layoutCost.addComponent(lblCostConst); layoutCost.addComponent(tfCostConstruction); layoutCostConstruction1.addComponent(tfDynamicCostConst1); layoutCostConstruction1.addComponent(tfDynamicCostConst2); layoutCostConstruction1.addComponent(tfDynamicCostConst3); layoutCostConstruction1.addComponent(tfDynamicCostConst4); layoutCostConstruction1.addComponent(tfDynamicCostConst5); layoutCostConstruction1.addComponent(tfDynamicCostConst6); layoutCostConstruction2.addComponent(tfDynamicCostConst7); layoutCostConstruction2.addComponent(tfDynamicCostConst8); layoutCostConstruction2.addComponent(tfDynamicCostConst9); layoutCostConstruction2.addComponent(tfDynamicCostConst10); layoutCostConstruction1.setVisible(false); layoutCostConstruction2.setVisible(false); layoutCostConstruction.addComponent(btnDynamicCostConst); layoutCostConstruction.setComponentAlignment(btnDynamicCostConst, Alignment.TOP_RIGHT); layoutCostConstruction.addComponent(layoutCost); layoutCostConstruction.addComponent(layoutCostConstruction1); layoutCostConstruction.addComponent(layoutCostConstruction2); layoutCostConstruction.setMargin(true); // for Guideline area layoutGuideline.addComponent(btnAddGuideline); layoutGuideline.setComponentAlignment(btnAddGuideline, Alignment.TOP_RIGHT); layoutGuideline.setMargin(true); layoutGuideline.addComponent(new ComponentIterGuideline("Land", "", "", "")); layoutGuideline.addComponent(new ComponentIterGuideline("Building", "", "", "")); // for guide line reference streetLayout.addComponent(slStreetSerNo); streetLayout.addComponent(tfStreetName); layoutGuidelineReference1.setColumns(4); layoutGuidelineReference1.setSpacing(true); layoutGuidelineReference1.addComponent(tfZone); layoutGuidelineReference1.addComponent(tfSRO); layoutGuidelineReference1.addComponent(tfVillage); layoutGuidelineReference1.addComponent(tfRevnueDist); layoutGuidelineReference1.addComponent(tfTalukName); layoutGuidelineReference1.addComponent(streetLayout); layoutGuidelineReference1.addComponent(tfGuidelineValue); layoutGuidelineReference1.addComponent(tfGuidelineValueMatric); layoutGuidelineReference1.addComponent(slClassification); layoutGuidelineReference1.setMargin(true); layoutGuidelineReference.setSpacing(true); layoutGuidelineReference.addComponent(layoutGuidelineReference1); // add components in main panel accordion.setWidth("100%"); layoutEvaluationDetails.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutEvaluationDetails), "Evaluation Details"); layoutOwnerDetails.setStyleName("bluebar"); layoutAssetDetails.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutAssetOwner), "Owner Details/Asset Details"); layoutNormalLegal.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutNormalLegal), "Document Details"); panelAdjoinProperties.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(panelAdjoinProperties), "Adjoining Properties"); panelDimension.setStyleName("bluebar"); accordion.addTab(panelDimension, "Dimension"); layoutmachingBoundary.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutmachingBoundary), "Matching of Boundaires And Tenure/Occupancy Details"); layoutNoofRooms.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutNoofRooms), "No. of Rooms/No. of Floors"); layoutAreaDetails.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutAreaDetails), "Area Details of the Property"); layoutPlanApproval.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutPlanApproval), "Details of Plan Approval"); layoutLandConstValuation1.setStyleName("bluebar"); accordion.addTab(layoutLandConstValuation1, "Valuation of Land/under Construcation Building"); panelBuildSpecfication.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(panelBuildSpecfication), "Specfication of the building"); layoutApplicantEstimate.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutApplicantEstimate), "Applicant Estimate"); layoutApplicantReasonable.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutApplicantReasonable), "Applicant Reasonable"); layoutGuideline.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutGuideline), "Guideline Details"); layoutGuidelineReference.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutGuidelineReference), "Guideline Reference Details"); layoutPropertyValue.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutPropertyValue), "Property Value Details"); layoutPlintharea.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutPlintharea), "Plinth Area Details"); layoutConstruction.setStyleName("bluebar"); layoutViolation.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutConstViolation), "Construction/Violation Details"); layoutEarthquake.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutEarthquake), "Earth Quake Details"); layoutCostConstruction.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutCostConstruction), "Cost of Construction"); this.accordion.addListener(new SelectedTabChangeListener() { public void selectedTabChange(SelectedTabChangeEvent event) { if (event.getTabSheet().getSelectedTab().equals(panelDimension)) { Iterator<Component> myComps = panelDimension.getComponentIterator(); BigDecimal siteArea = new BigDecimal(0.00); while (myComps.hasNext()) { final Component component = myComps.next(); int i = 1; if (component instanceof ComponentIterDimensionofPlot) { ComponentIterDimensionofPlot mycomponent = (ComponentIterDimensionofPlot) component; List<TPemCmPropDimension> getList = mycomponent.getDimensionPropertyList(); try { List<String> mylist = mycomponent.getLeastValaue(); siteArea = siteArea.add(new BigDecimal(mylist.get(0).replaceAll("[^\\d.]", ""))); tfNorthandSouth.setValue(mylist.get(1)); tfSiteArea.setValue(siteArea.toString()); } catch (Exception e) { logger.info("Error-->" + e); } } } BigDecimal site = new BigDecimal(0.00); BigDecimal fair = new BigDecimal(1.00); BigDecimal salbale = new BigDecimal(435.60); try { site = new BigDecimal(tfSiteArea.getValue().replaceAll("[^\\d.]", "")); } catch (Exception e) { site = new BigDecimal("0.00"); } try { site.divide(salbale, 2, RoundingMode.HALF_UP).toPlainString(); fair.multiply(site.divide(salbale, 2, RoundingMode.HALF_UP)) .multiply(new BigDecimal(tfAdopetdMarketRate.getValue().replaceAll("[^\\d.]", ""))); tfSiteArea.setValue(site.toString() + " sft (or) " + site.divide(salbale, 2, RoundingMode.HALF_UP).toPlainString() + " cents"); tfSalableArea.setValue(site.toString() + " sft (or) " + site.divide(salbale, 2, RoundingMode.HALF_UP).toPlainString() + " cents"); tfAreaofLand.setValue(site.toString() + " sft (or) " + site.divide(salbale, 2, RoundingMode.HALF_UP).toPlainString() + " cents"); tfFairMarketRate.setValue(XMLUtil.IndianFormat(new BigDecimal(fair .multiply(site.divide(salbale, 2, RoundingMode.HALF_UP)) .multiply(new BigDecimal(tfAdopetdMarketRate.getValue().replaceAll("[^\\d.]", ""))) .toString()))); } catch (Exception e) { } } } }); layoutMainForm.addComponent(PanelGenerator.createPanel(accordion)); layoutMainForm.setMargin(true); layoutMainForm.setSpacing(true); // for main panel layoutButton2.setSpacing(true); btnSave.setStyleName("savebt"); btnCancel.setStyleName("cancelbt"); //saveExcel.addStyleName("downloadbt"); btnSubmit.setStyleName("submitbt"); layoutButton2.addComponent(btnSave); layoutButton2.addComponent(btnSubmit); // layoutButton2.addComponent(saveExcel); layoutButton2.addComponent(btnCancel); btnSave.setVisible(false); btnCancel.setVisible(false); btnSubmit.setVisible(false); //saveExcel.setVisible(false); hlHeaderLayout.addComponent(layoutButton2); hlHeaderLayout.setComponentAlignment(layoutButton2, Alignment.BOTTOM_RIGHT); // Initaited the Label Function here by Hohul lblTableTitle = new Label(); lblSaveNotification = new Label(); lblSaveNotification.setContentMode(ContentMode.HTML); lblNotificationIcon = new Label(); lblTableTitle.setValue("<B> Action:</B>"); lblTableTitle.setContentMode(ContentMode.HTML); lblFormTittle = new Label(); lblFormTittle.setContentMode(ContentMode.HTML); lblFormTittle.setValue(" <b>" + screenName + "</b> :: Home"); lblFormTitle1 = new Label(); lblFormTitle1.setContentMode(ContentMode.HTML); lblFormTitle1.setValue(" <b>" + screenName + "</b> :: "); lblAddEdit = new Label(); lblAddEdit.setContentMode(ContentMode.HTML); // Button Back declaration by Hohul btnBack = new Button("Home", this); btnBack.setStyleName("link"); // Bread Scrumbs initiated here by Hohul hlBreadCrumbs = new HorizontalLayout(); hlBreadCrumbs.addComponent(lblFormTitle1); hlBreadCrumbs.addComponent(btnBack); hlBreadCrumbs.setComponentAlignment(btnBack, Alignment.TOP_CENTER); hlBreadCrumbs.addComponent(lblAddEdit); hlBreadCrumbs.setComponentAlignment(lblAddEdit, Alignment.MIDDLE_CENTER); hlBreadCrumbs.setVisible(false); mainPanel.addComponent(layoutMainForm); mainPanel.setVisible(false); // for search panel // for search panel // Added by Hohul -----> For Search Panel Layouts FormLayout flSearchEvalNumber = new FormLayout(); flSearchEvalNumber.addComponent(tfSearchEvalNumber); FormLayout flSearchBankbranch = new FormLayout(); flSearchBankbranch.addComponent(tfSearchBankbranch); FormLayout flSearchCustomer = new FormLayout(); flSearchCustomer.addComponent(tfSearchCustomer); HorizontalLayout hlSearchComponentLayout = new HorizontalLayout(); hlSearchComponentLayout.addComponent(flSearchEvalNumber); hlSearchComponentLayout.addComponent(flSearchBankbranch); hlSearchComponentLayout.addComponent(flSearchCustomer); hlSearchComponentLayout.setSpacing(true); hlSearchComponentLayout.setMargin(true); //Initialization and properties for btnDownload btnDownload = new Button("Download"); //btnDownload.setDescription("Download"); btnDownload.addStyleName("downloadbt"); btnDownload.addClickListener(new ClickListener() { @Override public void buttonClick(ClickEvent event) { // UI.getCurrent()..clearDashboardButtonBadge(); event.getButton().removeStyleName("unread"); if (notifications != null && notifications.getUI() != null) notifications.close(); else { buildNotifications(event); UI.getCurrent().addWindow(notifications); notifications.focus(); ((VerticalLayout) UI.getCurrent().getContent()) .addLayoutClickListener(new LayoutClickListener() { @Override public void layoutClick(LayoutClickEvent event) { notifications.close(); ((VerticalLayout) UI.getCurrent().getContent()).removeLayoutClickListener(this); } }); } } }); hlFileDownloadLayout = new HorizontalLayout(); hlFileDownloadLayout.setSpacing(true); hlFileDownloadLayout.addComponent(btnDownload); hlFileDownloadLayout.setComponentAlignment(btnDownload, Alignment.MIDDLE_CENTER); VerticalLayout vlSearchandResetButtonLAyout = new VerticalLayout(); vlSearchandResetButtonLAyout.setSpacing(true); vlSearchandResetButtonLAyout.addComponent(btnReset); vlSearchandResetButtonLAyout.setWidth("100"); vlSearchandResetButtonLAyout.addStyleName("topbarthree"); vlSearchandResetButtonLAyout.setMargin(true); HorizontalLayout hlSearchComponentandButtonLayout = new HorizontalLayout(); hlSearchComponentandButtonLayout.setSizeFull(); hlSearchComponentandButtonLayout.setSpacing(true); hlSearchComponentandButtonLayout.addComponent(hlSearchComponentLayout); hlSearchComponentandButtonLayout.setComponentAlignment(hlSearchComponentLayout, Alignment.MIDDLE_LEFT); hlSearchComponentandButtonLayout.addComponent(vlSearchandResetButtonLAyout); hlSearchComponentandButtonLayout.setComponentAlignment(vlSearchandResetButtonLAyout, Alignment.MIDDLE_RIGHT); hlSearchComponentandButtonLayout.setExpandRatio(vlSearchandResetButtonLAyout, 1); final VerticalLayout vlSearchComponentandButtonLayout = new VerticalLayout(); vlSearchComponentandButtonLayout.setSpacing(true); vlSearchComponentandButtonLayout.setSizeFull(); vlSearchComponentandButtonLayout.addComponent(hlSearchComponentandButtonLayout); /*layoutSearch.addComponent(tfSearchEvalNumber); layoutSearch.addComponent(tfSearchBankbranch); layoutSearch.addComponent(tfSearchCustomer); //layoutSearch.addComponent(btnSearch); layoutSearch.addComponent(btnReset); //layoutSearch.setComponentAlignment(btnSearch, Alignment.BOTTOM_LEFT); layoutSearch.setComponentAlignment(btnReset, Alignment.BOTTOM_LEFT); //btnSearch.addStyleName("default"); */ btnReset.addStyleName("resetbt"); tfSearchCustomer.setImmediate(true); tfSearchCustomer.addListener(new TextChangeListener() { private static final long serialVersionUID = 1L; SimpleStringFilter filter = null; public void textChange(TextChangeEvent event) { Filterable f = (Filterable) tblEvalDetails.getContainerDataSource(); if (filter != null) f.removeContainerFilter(filter); filter = new SimpleStringFilter("custName", event.getText(), true, false); f.addContainerFilter(filter); total = f.size(); tblEvalDetails.setColumnFooter("lastUpdateDt", "No. of Records:" + total); } }); tfSearchEvalNumber.setImmediate(true); tfSearchEvalNumber.addListener(new TextChangeListener() { private static final long serialVersionUID = 1L; SimpleStringFilter filter = null; public void textChange(TextChangeEvent event) { Filterable f = (Filterable) tblEvalDetails.getContainerDataSource(); if (filter != null) f.removeContainerFilter(filter); filter = new SimpleStringFilter("evalNo", event.getText(), true, false); f.addContainerFilter(filter); total = f.size(); tblEvalDetails.setColumnFooter("lastUpdateDt", "No. of Records:" + total); } }); tfSearchBankbranch.setImmediate(true); tfSearchBankbranch.addValueChangeListener(new Property.ValueChangeListener() { private static final long serialVersionUID = 1L; Filter filter = null; @Override public void valueChange(ValueChangeEvent event) { // TODO Auto-generated method stub try { String strBankBranch = tfSearchBankbranch.getValue().toString(); Filterable f = (Filterable) tblEvalDetails.getContainerDataSource(); if (filter != null) f.removeContainerFilter(filter); filter = new Compare.Equal("bankBranch", strBankBranch); f.addContainerFilter(filter); f.addContainerFilter(filter); total = f.size(); tblEvalDetails.setColumnFooter("lastUpdateDt", "No. of Records:" + total); } catch (Exception e) { } } }); searchPanel.addComponent(PanelGenerator.createPanel(vlSearchComponentandButtonLayout)); searchPanel.setMargin(true); // Add Layout table panel by Hohul HorizontalLayout flTableCaption = new HorizontalLayout(); flTableCaption.addComponent(lblTableTitle); flTableCaption.setComponentAlignment(lblTableTitle, Alignment.MIDDLE_CENTER); flTableCaption.addStyleName("lightgray"); flTableCaption.setHeight("25px"); flTableCaption.setWidth("60px"); lblNoofRecords = new Label(" ", ContentMode.HTML); lblNoofRecords.addStyleName("lblfooter"); HorizontalLayout hlTableTittleLayout = new HorizontalLayout(); hlTableTittleLayout.addComponent(flTableCaption); hlTableTittleLayout.addComponent(btnAdd); hlTableTittleLayout.addComponent(btnEdit); hlTableTittleLayout.addComponent(btnView); hlTableTittleLayout.setHeight("25px"); hlTableTittleLayout.setSpacing(true); HorizontalLayout hlTableTitleandCaptionLayout = new HorizontalLayout(); hlTableTitleandCaptionLayout.addStyleName("topbarthree"); hlTableTitleandCaptionLayout.setWidth("100%"); hlTableTitleandCaptionLayout.addComponent(hlTableTittleLayout); hlTableTitleandCaptionLayout.addComponent(hlFileDownloadLayout); hlTableTitleandCaptionLayout.setComponentAlignment(hlFileDownloadLayout, Alignment.MIDDLE_RIGHT); hlTableTitleandCaptionLayout.setHeight("28px"); // for table panel btnAdd.addStyleName("add"); btnEdit.addStyleName("editbt"); btnView.addStyleName("view"); btnView.setEnabled(false); hlAddEditLayout.addStyleName("topbarthree"); hlAddEditLayout.setWidth("100%"); hlAddEditLayout.addComponent(hlTableTitleandCaptionLayout); hlAddEditLayout.setHeight("28px"); // Added Action Label to Table layoutTable.addComponent(hlAddEditLayout); layoutTable.setComponentAlignment(hlAddEditLayout, Alignment.TOP_LEFT); layoutTable.addComponent(tblEvalDetails); tablePanel.addComponent(layoutTable); tablePanel.setWidth("100%"); tablePanel.setMargin(true); layoutPage.addComponent(mainPanel); layoutPage.addComponent(searchPanel); layoutPage.addComponent(tablePanel); // Added labels and titles to respective Location by Hohul HorizontalLayout hlNotificationLayout = new HorizontalLayout(); hlNotificationLayout.addComponent(lblNotificationIcon); hlNotificationLayout.setComponentAlignment(lblNotificationIcon, Alignment.MIDDLE_LEFT); hlNotificationLayout.addComponent(lblSaveNotification); hlNotificationLayout.setComponentAlignment(lblSaveNotification, Alignment.MIDDLE_LEFT); hlHeaderLayout.addComponent(lblFormTittle); hlHeaderLayout.setComponentAlignment(lblFormTittle, Alignment.MIDDLE_LEFT); hlHeaderLayout.addComponent(hlBreadCrumbs); hlHeaderLayout.setComponentAlignment(hlBreadCrumbs, Alignment.MIDDLE_LEFT); hlHeaderLayout.addComponent(hlNotificationLayout); hlHeaderLayout.setComponentAlignment(hlNotificationLayout, Alignment.MIDDLE_LEFT); hlHeaderLayout.addComponent(layoutButton2); hlHeaderLayout.setComponentAlignment(layoutButton2, Alignment.MIDDLE_RIGHT); hlHeaderLayout.addComponent(layoutButton2); hlHeaderLayout.setComponentAlignment(layoutButton2, Alignment.BOTTOM_RIGHT); // load Component list values loadComponentListValues(); //setTableProperties(); populateAndConfig(false); }
From source file:com.gnts.pem.txn.synd.SyndConstructionBuilding.java
@SuppressWarnings("deprecation") void buildView(VerticalLayout layoutPage, HorizontalLayout hlHeaderLayout) { // for component width hlHeaderLayout.removeAllComponents(); setComponentStyle();/*ww w. jav a 2s .c o m*/ tblEvalDetails = new Table(); tblEvalDetails.setStyleName(Runo.TABLE_SMALL); tblEvalDetails.setPageLength(14); tblEvalDetails.setSizeFull(); tblEvalDetails.setFooterVisible(true); tblEvalDetails.setSelectable(true); tblEvalDetails.setImmediate(true); tblEvalDetails.setColumnCollapsingAllowed(true); // for evaluation details tfEvaluationPurpose.setValue("Collateral Security to the Bank"); slStreetSerNo.addItem("STREET NAME"); slStreetSerNo.addItem("SURVEY NO"); slStreetSerNo.setNullSelectionAllowed(false); tfEvaluationNumber.setRequired(true); tfBankBranch.setRequired(true); dfDateofValuation.setRequired(true); tfEvaluationPurpose.setRequired(true); layoutEvaluationDetails1.setColumns(4); layoutEvaluationDetails1.addComponent(tfEvaluationNumber); layoutEvaluationDetails1.addComponent(tfBankBranch); layoutEvaluationDetails1.addComponent(tfEvaluationPurpose); layoutEvaluationDetails1.addComponent(tfValuatedBy); layoutEvaluationDetails1.addComponent(dfDateofValuation); layoutEvaluationDetails1.addComponent(dfVerifiedDate); layoutEvaluationDetails1.addComponent(tfVerifiedBy); layoutEvaluationDetails1.addComponent(tfDynamicEvaluation1); layoutEvaluationDetails1.addComponent(tfDynamicEvaluation2); tfDynamicEvaluation1.setVisible(false); tfDynamicEvaluation2.setVisible(false); layoutEvaluationDetails1.setSpacing(true); layoutEvaluationDetails1.setMargin(true); layoutEvaluationDetails.addComponent(btnDynamicEvaluation1); layoutEvaluationDetails.setComponentAlignment(btnDynamicEvaluation1, Alignment.TOP_RIGHT); layoutEvaluationDetails.addComponent(layoutEvaluationDetails1); // for customer details tfDynamicCustomer1.setVisible(false); tfDynamicCustomer2.setVisible(false); layoutCustomerDetail1.setColumns(4); //layoutCustomerDetail.setCaption("Customer Details"); layoutCustomerDetail1.addComponent(tfCustomerName); layoutCustomerDetail1.addComponent(slPropertyDesc); layoutCustomerDetail1.addComponent(tfDynamicCustomer1); layoutCustomerDetail1.addComponent(tfDynamicCustomer2); layoutCustomerDetail1.setSpacing(true); layoutCustomerDetail1.setMargin(true); layoutCustomerDetail.addComponent(btnDynamicCustomer); layoutCustomerDetail.setComponentAlignment(btnDynamicCustomer, Alignment.TOP_RIGHT); layoutCustomerDetail.addComponent(layoutCustomerDetail1); // for asset details VerticalLayout formAsset1 = new VerticalLayout(); VerticalLayout formAsset2 = new VerticalLayout(); VerticalLayout formAsset3 = new VerticalLayout(); VerticalLayout formAsset4 = new VerticalLayout(); formAsset1.setSpacing(true); formAsset2.setSpacing(true); formAsset4.setSpacing(true); formAsset1.addComponent(tfCustomerName); formAsset1.addComponent(tfLandMark); formAsset1.addComponent(slPropertyDesc); formAsset2.addComponent(tfCustomerAddr); formAsset3.addComponent(tfPropertyAddress); formAsset3.addComponent(chkSameAddress); formAsset4.addComponent(tfDynamicAsset1); formAsset4.addComponent(tfDynamicAsset2); tfDynamicAsset1.setVisible(false); tfDynamicAsset2.setVisible(false); chkSameAddress.setImmediate(true); chkSameAddress.addListener(new Property.ValueChangeListener() { private static final long serialVersionUID = 1L; public void valueChange(ValueChangeEvent event) { if (chkSameAddress.getValue().equals(true)) { tfPropertyAddress.setValue(tfCustomerAddr.getValue()); } else { tfPropertyAddress.setValue(""); } } }); layoutAssetDetails1.setSpacing(true); layoutAssetDetails1.setColumns(4); layoutAssetDetails1.addComponent(formAsset1); layoutAssetDetails1.addComponent(formAsset2); layoutAssetDetails1.addComponent(formAsset3); layoutAssetDetails1.addComponent(formAsset4); layoutAssetDetails1.setMargin(true); layoutAssetDetails.addComponent(btnDynamicAsset); layoutAssetDetails.setComponentAlignment(btnDynamicAsset, Alignment.TOP_RIGHT); layoutAssetDetails.addComponent(layoutAssetDetails1); lblHeading = new Label("Owner Details"); layoutAssetOwner.addComponent(lblHeading); lblHeading.setStyleName("h4"); layoutAssetOwner.addComponent(PanelGenerator.createPanel(layoutOwnerDetails)); lblHeading = new Label("Asset Details"); layoutAssetOwner.addComponent(lblHeading); lblHeading.setStyleName("h4"); layoutAssetOwner.addComponent(PanelGenerator.createPanel(layoutAssetDetails)); //for Owner Details layoutOwnerDetails.addComponent(btnAddOwner); layoutOwnerDetails.setComponentAlignment(btnAddOwner, Alignment.TOP_RIGHT); layoutOwnerDetails1.setColumns(4); layoutOwnerDetails1.addComponent(new ComponentIterOwnerDetails("", "")); layoutOwnerDetails.addComponent(layoutOwnerDetails1); layoutOwnerDetails1.setSpacing(true); layoutOwnerDetails1.setMargin(true); // for document details panelNormalDocumentDetails.addComponent(btnAddNorDoc); panelNormalDocumentDetails.setComponentAlignment(btnAddNorDoc, Alignment.TOP_RIGHT); panelNormalDocumentDetails.addComponent(new ComponentIteratorNormlDoc(null, null, "", "")); panelNormalDocumentDetails.setMargin(true); panelLegalDocumentDetails.addComponent(btnAddLegalDoc); panelLegalDocumentDetails.setComponentAlignment(btnAddLegalDoc, Alignment.TOP_RIGHT); panelLegalDocumentDetails.addComponent(new ComponentIteratorLegalDoc("", "", null)); panelLegalDocumentDetails.setMargin(true); layoutNormalLegal.addComponent(PanelGenerator.createPanel(panelNormalDocumentDetails)); lblHeading = new Label("Legal Documents"); layoutNormalLegal.addComponent(lblHeading); lblHeading.setStyleName("h4"); layoutNormalLegal.addComponent(PanelGenerator.createPanel(panelLegalDocumentDetails)); layoutNormalLegal.setMargin(true); // for adjoin properties //panelAdjoinProperties.setCaption("Adjoining Properties"); panelAdjoinProperties.addComponent(btnAddAdjoinProperty); panelAdjoinProperties.setComponentAlignment(btnAddAdjoinProperty, Alignment.BOTTOM_RIGHT); panelAdjoinProperties.addComponent(new ComponentIteratorAdjoinProperty(null, true, true, true)); // for dimensions //panelDimension.setCaption("Dimensions"); panelDimension.addComponent(btnAddDimension); panelDimension.setComponentAlignment(btnAddDimension, Alignment.BOTTOM_RIGHT); panelDimension.addComponent(new ComponentIterDimensionofPlot(null, true, true, true)); panelNormalDocumentDetails.setWidth("100%"); panelLegalDocumentDetails.setWidth("100%"); panelAdjoinProperties.setStyleName("width:100%;display:block;"); // for layoutmachingBoundary1.setSpacing(true); tfDynamicmatching1.setVisible(true); tfDynamicmatching2.setVisible(true); layoutmachingBoundary2.addComponent(btnDynamicmatching); layoutmachingBoundary2.setComponentAlignment(btnDynamicmatching, Alignment.TOP_RIGHT); layoutmachingBoundary1.setSpacing(true); layoutmachingBoundary1.addComponent(slMatchingBoundary); layoutmachingBoundary1.addComponent(slPlotDemarcated); layoutmachingBoundary1.addComponent(slApproveLandUse); layoutmachingBoundary1.addComponent(slTypeofProperty); layoutmachingBoundary1.addComponent(tfDynamicmatching1); layoutmachingBoundary1.addComponent(tfDynamicmatching2); layoutmachingBoundary1.setSpacing(true); layoutmachingBoundary1.setMargin(true); // tenure/occupancy details layoutTenureOccupay.setSpacing(true); layoutTenureOccupay1.setSpacing(true); layoutTenureOccupay2.addComponent(btnDynamicTenure); layoutTenureOccupay2.setComponentAlignment(btnDynamicTenure, Alignment.TOP_RIGHT); layoutTenureOccupay.setColumns(2); layoutTenureOccupay1.addComponent(tfStatusofTenure); layoutTenureOccupay1.addComponent(slOwnedorRent); layoutTenureOccupay1.addComponent(tfNoOfYears); layoutTenureOccupay1.addComponent(tfRelationship); layoutTenureOccupay1.addComponent(tfDynamicTenure1); layoutTenureOccupay1.addComponent(tfDynamicTenure2); layoutmachingBoundary2.addComponent(layoutmachingBoundary1); layoutTenureOccupay2.addComponent(layoutTenureOccupay1); layoutTenureOccupay.addComponent(PanelGenerator.createPanel(layoutmachingBoundary2)); layoutTenureOccupay.addComponent(PanelGenerator.createPanel(layoutTenureOccupay2)); tfDynamicTenure1.setVisible(false); tfDynamicTenure2.setVisible(false); layoutmachingBoundary1.setMargin(true); layoutTenureOccupay1.setMargin(true); layoutmachingBoundary.addComponent(layoutTenureOccupay); layoutTenureOccupay1.setMargin(true); layoutmachingBoundary.setMargin(true); // for no of rooms layoutNoofRooms2.addComponent(btnDynamicRooms); layoutNoofRooms2.setComponentAlignment(btnDynamicRooms, Alignment.TOP_RIGHT); layoutNoofRooms2.setMargin(true); layoutNoofRooms1.addComponent(tfNoofRooms); layoutNoofRooms1.addComponent(tfLivingDining); layoutNoofRooms1.addComponent(tfBedRooms); layoutNoofRooms1.addComponent(tfKitchen); layoutNoofRooms1.addComponent(tfToilets); layoutNoofRooms1.addComponent(tfDynamicRooms1); layoutNoofRooms1.addComponent(tfDynamicRooms2); tfDynamicRooms1.setVisible(false); tfDynamicRooms2.setVisible(false); layoutNoofRooms1.setSpacing(true); layoutNoofRooms2.addComponent(layoutNoofRooms1); // no of floors layoutNoofFloors.setColumns(2); layoutNoofFloors2.setMargin(true); layoutNoofFloors2.addComponent(btnDynamicFloor); layoutNoofFloors2.setComponentAlignment(btnDynamicFloor, Alignment.TOP_RIGHT); layoutNoofFloors1.addComponent(tfTotNoofFloors); layoutNoofFloors1.addComponent(tfPropertyLocated); layoutNoofFloors1.addComponent(tfApproxAgeofBuilding); layoutNoofFloors1.addComponent(tfResidualAgeofBuilding); layoutNoofFloors1.addComponent(slTypeofStructure); layoutNoofFloors1.addComponent(tfDynamicFloors1); layoutNoofFloors1.addComponent(tfDynamicFloors2); tfDynamicFloors1.setVisible(false); tfDynamicFloors2.setVisible(false); layoutNoofFloors1.setSpacing(true); layoutNoofFloors2.addComponent(layoutNoofFloors1); layoutNoofFloors.setSpacing(true); layoutNoofFloors.addComponent(PanelGenerator.createPanel(layoutNoofFloors2)); layoutNoofFloors.addComponent(PanelGenerator.createPanel(layoutNoofRooms2)); layoutNoofRooms.addComponent(layoutNoofFloors); layoutNoofRooms.setMargin(true); // construction //layoutConstruction.setCaption("Construction"); layoutConstruction1.setSpacing(true); layoutConstruction1.setColumns(4); layoutConstruction1.addComponent(tfStageofConst); layoutConstruction1.addComponent(tfDynamicConstruction1); layoutConstruction1.addComponent(tfDynamicConstruction2); tfDynamicConstruction1.setVisible(false); tfDynamicConstruction2.setVisible(false); layoutConstruction.addComponent(btnDynamicConstruction); layoutConstruction.setComponentAlignment(btnDynamicConstruction, Alignment.TOP_RIGHT); layoutConstruction.addComponent(layoutConstruction1); layoutConstruction.setMargin(true); //for violation //layoutViolation.setCaption("Violation Details"); layoutViolation1.setSpacing(true); layoutViolation1.setColumns(4); layoutViolation1.addComponent(tfAnyViolation); layoutViolation1.addComponent(tfDynamicViolation1); layoutViolation1.addComponent(tfDynamicViolation2); tfDynamicViolation1.setVisible(false); tfDynamicViolation2.setVisible(false); layoutViolation.addComponent(btnDynamicViolation); layoutViolation.setComponentAlignment(btnDynamicViolation, Alignment.TOP_RIGHT); layoutViolation.addComponent(layoutViolation1); layoutViolation.setMargin(true); layoutConstViolation.addComponent(PanelGenerator.createPanel(layoutConstruction)); layoutConstViolation.addComponent(PanelGenerator.createPanel(layoutViolation)); layoutConstViolation.setSpacing(true); layoutConstViolation.setMargin(true); // area details of the property //layoutAreaDetails.setCaption("Area Details of the Property"); layoutAreaDetails1.setSpacing(true); layoutAreaDetails1.setColumns(4); layoutAreaDetails1.addComponent(tfSiteArea); layoutAreaDetails1.addComponent(tfPlinthArea); layoutAreaDetails1.addComponent(tfCarpetArea); layoutAreaDetails1.addComponent(tfSalableArea); layoutAreaDetails1.addComponent(tfRemarks); layoutAreaDetails1.addComponent(tfDynamicAreaDetail1); layoutAreaDetails1.addComponent(tfDynamicAreaDetail2); tfDynamicAreaDetail1.setVisible(false); tfDynamicAreaDetail2.setVisible(false); layoutAreaDetails.addComponent(btnDynamicAreaDetail); layoutAreaDetails.setComponentAlignment(btnDynamicAreaDetail, Alignment.TOP_RIGHT); layoutAreaDetails.addComponent(layoutAreaDetails1); layoutAreaDetails.setMargin(true); // valuation of land layoutValuationLand.setSpacing(true); layoutValuationLand1.setSpacing(true); layoutValuationLand1.addComponent(tfAreaofLand); layoutValuationLand1.addComponent(tfNorthandSouth); layoutValuationLand1.addComponent(tfMarketRate); layoutValuationLand1.addComponent(tfAdopetdMarketRate); layoutValuationLand1.addComponent(tfFairMarketRate); layoutValuationLand1.addComponent(tfRealizabletRate); layoutValuationLand1.addComponent(tfDistressRate); layoutValuationLand1.addComponent(tfGuidelineRate); layoutValuationLand1.addComponent(tfDynamicValuation1); layoutValuationLand1.addComponent(tfDynamicValuation2); tfDynamicValuation1.setVisible(false); tfDynamicValuation2.setVisible(false); tfAdopetdMarketRate.setRequired(true); layoutValuationLand.addComponent(btnDynamicValuation); layoutValuationLand.setComponentAlignment(btnDynamicValuation, Alignment.TOP_RIGHT); layoutValuationLand.addComponent(layoutValuationLand1); layoutValuationLand.setMargin(true); //property value layoutPropertyValue.setSpacing(true); layoutPropertyValue.setMargin(true); layoutPropertyValue1.setColumns(4); layoutPropertyValue1.setSpacing(true); layoutPropertyValue1.addComponent(tfRealizabletRate); layoutPropertyValue1.addComponent(tfDistressRate); layoutPropertyValue1.addComponent(tfGuidelineRate); layoutPropertyValue.addComponent(layoutPropertyValue1); // for details of plan approval layoutPlanApproval1.setColumns(4); formLand.addComponent(slLandandBuilding); formLand.addComponent(tfLandandBuilding); formBuilding.addComponent(slBuilding); formBuilding.addComponent(tfBuilding); layoutPlanApproval1.addComponent(formLand); layoutPlanApproval1.addComponent(formBuilding); layoutPlanApproval1.addComponent(tfPlanApprovedBy); layoutPlanApproval1.addComponent(dfLicenseFrom); layoutPlanApproval1.addComponent(slIsLicenceForced); layoutPlanApproval1.addComponent(slAllApprovalRecved); layoutPlanApproval1.addComponent(slConstAsperAppPlan); layoutPlanApproval1.addComponent(tfDynamicPlanApproval1); layoutPlanApproval1.addComponent(tfDynamicPlanApproval2); tfDynamicPlanApproval1.setVisible(false); tfDynamicPlanApproval2.setVisible(false); layoutPlanApproval1.setSpacing(true); layoutPlanApproval1.setMargin(true); layoutPlanApproval.addComponent(btnDynamicPlanApproval); layoutPlanApproval.setComponentAlignment(btnDynamicPlanApproval, Alignment.TOP_RIGHT); layoutPlanApproval.addComponent(layoutPlanApproval1); //details of the plan approval construction vlLand.addComponent(slLandBuildConst); vlLand.addComponent(tfLandBuildConst); vlBuilding.addComponent(slBuildConst); vlBuilding.addComponent(tfBuildConst); hlConstPlanApp1.addComponent(vlLand); hlConstPlanApp1.addComponent(vlBuilding); hlConstPlanApp1.addComponent(tfPlanApproveConst); hlConstPlanApp1.addComponent(slAllApprovalRecvedConst); hlConstPlanApp2.addComponent(slConstAsperAppPlanConst); hlConstPlanApp2.addComponent(tfDynamicConstPlanApp1); hlConstPlanApp2.addComponent(tfDynamicConstPlanApp2); tfDynamicConstPlanApp1.setVisible(false); tfDynamicConstPlanApp2.setVisible(false); hlConstPlanApp1.setSpacing(true); hlConstPlanApp1.setMargin(true); hlConstPlanApp2.setSpacing(true); hlConstPlanApp2.setMargin(true); vlConstPlanApp.addComponent(btnDynamicConstPlan); vlConstPlanApp.setComponentAlignment(btnDynamicConstPlan, Alignment.TOP_RIGHT); vlConstPlanApp.addComponent(hlConstPlanApp1); vlConstPlanApp.addComponent(hlConstPlanApp2); //valuation of Construction layoutConstValuation.setSpacing(true); layoutConstValuation1.setSpacing(true); layoutConstValuation1.addComponent(slTypeProperty); layoutConstValuation1.addComponent(slTypeStructure); layoutConstValuation1.addComponent(tfYearConstruction); layoutConstValuation1.addComponent(tfNoFloors); layoutConstValuation1.addComponent(tfConstQuality); layoutConstValuation1.addComponent(slAllapproval); layoutConstValuation1.addComponent(slIsConstruction); layoutConstValuation1.addComponent(tfReason); layoutConstValuation1.addComponent(tfDynamicConstval1); layoutConstValuation1.addComponent(tfDynamicConstval2); tfDynamicConstval1.setVisible(false); tfDynamicConstval2.setVisible(false); layoutConstValuation.addComponent(btnDynamicConstVal); layoutConstValuation.setComponentAlignment(btnDynamicConstVal, Alignment.TOP_RIGHT); layoutConstValuation.addComponent(layoutConstValuation1); layoutConstValuation.setMargin(true); layoutLandConstValuation.setSpacing(true); layoutLandConstValuation.setColumns(2); //layoutLandConstValuation.addComponent(PanelGenerator.createPanel(layoutValuationLand)); //layoutLandConstValuation.addComponent(PanelGenerator.createPanel(layoutConstValuation)); //layoutLandConstValuation1.addComponent(layoutLandConstValuation); //layoutLandConstValuation1.setMargin(true); // for plinth area layoutPlintharea.addComponent(btnAddPlinth); layoutPlintharea.setComponentAlignment(btnAddPlinth, Alignment.TOP_RIGHT); layoutPlintharea.setMargin(true); layoutPlintharea.addComponent(new ComponentIterPlinthArea("Ground Floor", "", "")); layoutPlintharea.addComponent(new ComponentIterPlinthArea("Portico and Stair", "", "")); // for plinth area vlPlinthAreaNew.addComponent(btnAddPlinthNew); vlPlinthAreaNew.setComponentAlignment(btnAddPlinthNew, Alignment.TOP_RIGHT); vlPlinthAreaNew.setMargin(true); vlPlinthAreaNew.addComponent(new ComponentIterPlinthArea("Ground Floor", "", "")); vlPlinthAreaNew.addComponent(new ComponentIterPlinthArea("Portico and Stair", "", "")); //for Valuation Details layoutValuationDetails.addComponent(btnAddValDtls); layoutValuationDetails1.setColumns(8); layoutValuationDetails1.setSpacing(true); layoutValuationDetails.setComponentAlignment(btnAddValDtls, Alignment.TOP_RIGHT); layoutValuationDetails1.addComponent(lblParticular); layoutValuationDetails1.addComponent(lblPlinthArea); layoutValuationDetails1.addComponent(lblRoofHt); layoutValuationDetails1.addComponent(lblBuildAge); layoutValuationDetails1.addComponent(lblRate); layoutValuationDetails1.addComponent(lblReplace); layoutValuationDetails1.addComponent(lblDepreciation); layoutValuationDetails1.addComponent(lblNetvalue); layoutValuationDetails1.setComponentAlignment(lblParticular, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setComponentAlignment(lblPlinthArea, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setComponentAlignment(lblRoofHt, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setComponentAlignment(lblBuildAge, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setComponentAlignment(lblRate, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setComponentAlignment(lblReplace, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setComponentAlignment(lblDepreciation, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setComponentAlignment(lblNetvalue, Alignment.BOTTOM_LEFT); layoutValuationDetails1.setWidth("650px"); layoutValuationDetails.addComponent(layoutValuationDetails1); layoutValuationDetails.addComponent(layoutValuationDetails2); layoutValuationDetails.setWidth("100%"); layoutValuationDetails.setMargin(true); ValuationDetailsList obj = new ValuationDetailsList(); ValuationDetailsList obj1 = new ValuationDetailsList(); obj.setFloorDtlsLabel("Ground Floor Building"); obj1.setFloorDtlsLabel("First Floor Building"); layoutValuationDetails2.addComponent(new ComponenetIterValuationDetails(obj)); layoutValuationDetails2.addComponent(new ComponenetIterValuationDetails(obj1)); //for Calculation-extra Items layoutExtraItems.setCaption("Extra Items"); layoutExtraItems.setWidth("420px"); layoutExtraItems.addComponent(btnDynamicExtra); layoutExtraItems.setComponentAlignment(btnDynamicExtra, Alignment.TOP_RIGHT); layoutExtraItems.addComponent(new ComponentIterExtraItems(null, "")); layoutAdditionItem.setCaption("Additional Items"); layoutAdditionItem.setWidth("400px"); layoutAdditionItem.addComponent(btnDynamicAdditional); layoutAdditionItem.setComponentAlignment(btnDynamicAdditional, Alignment.TOP_RIGHT); layoutAdditionItem.addComponent(new ComponentIterAdditionalItems(null, "")); layoutExtraAddItems1.setSpacing(true); layoutExtraAddItems1.setMargin(true); layoutExtraAddItems.setColumns(2); layoutExtraAddItems.addComponent(layoutExtraItems); layoutExtraAddItems.addComponent(layoutAdditionItem); layoutExtraAddItems1.addComponent(layoutExtraAddItems); //for Miscellaneous layoutMiscellaneous.setCaption("Miscellaneous"); layoutMiscellaneous.setWidth("420px"); layoutMiscellaneous.addComponent(btnDynamicMiscell); layoutMiscellaneous.setComponentAlignment(btnDynamicMiscell, Alignment.TOP_RIGHT); layoutMiscellaneous.addComponent(new ComponentIterMiscellaneous(null, "")); layoutServices.setCaption("Services"); layoutServices.setWidth("400px"); layoutServices.addComponent(btnDynamicServices); layoutServices.setComponentAlignment(btnDynamicServices, Alignment.TOP_RIGHT); layoutServices.addComponent(new ComponentIerServices(null, "")); layoutMiscellService1.setSpacing(true); layoutMiscellService1.setMargin(true); layoutMiscellService.setColumns(2); layoutMiscellService.addComponent(layoutMiscellaneous); layoutMiscellService.addComponent(layoutServices); layoutMiscellService1.addComponent(layoutMiscellService); // for Build Specification panelBuildSpecfication.addComponent(btnAddBuildSpec); panelBuildSpecfication.setComponentAlignment(btnAddBuildSpec, Alignment.BOTTOM_RIGHT); panelBuildSpecfication.addComponent(new ComponentIterBuildingSpecfication(null, true, true, true)); panelBuildSpecfication.setWidth("100%"); // for Build Specification panelBuildSpecficationNew.addComponent(btnAddBuildSpecNew); panelBuildSpecficationNew.setComponentAlignment(btnAddBuildSpecNew, Alignment.BOTTOM_RIGHT); panelBuildSpecficationNew.addComponent(new ComponentIterBuildingSpecfication(null, true, true, true)); panelBuildSpecficationNew.setWidth("100%"); // for applicant estimate layoutApplicantEstimate.setSpacing(true); layoutApplicantEstimate1.setSpacing(true); layoutApplicantEstimate1.setColumns(2); layoutApplicantEstimate2.setSpacing(true); layoutApplicantEstimate2.setColumns(2); layoutApplicantEstimate3.setSpacing(true); layoutApplicantEstimate3.setColumns(2); layoutApplicantEstimate4.setSpacing(true); layoutApplicantEstimate4.setColumns(2); layoutApplicantEstimate1.addComponent(lblAppEstimate); layoutApplicantEstimate1.addComponent(tfAppEstimate); layoutApplicantEstimate1.addComponent(lblDtlsAppEstimate); layoutApplicantEstimate1.addComponent(tfDtlsAppEstimate); layoutApplicantEstimate1.addComponent(tfDetails1); layoutApplicantEstimate1.addComponent(tfDetailVal1); layoutApplicantEstimate1.addComponent(tfDetails2); layoutApplicantEstimate1.addComponent(tfDetailVal2); layoutApplicantEstimate1.addComponent(tfDetails3); layoutApplicantEstimate1.addComponent(tfDetailVal3); layoutApplicantEstimate2.addComponent(tfDynamicAppEstimate1); layoutApplicantEstimate2.addComponent(tfDynamicAppEstimate2); layoutApplicantEstimate2.addComponent(tfDynamicAppEstimate3); layoutApplicantEstimate2.addComponent(tfDynamicAppEstimate4); layoutApplicantEstimate3.addComponent(tfDynamicAppEstimate5); layoutApplicantEstimate3.addComponent(tfDynamicAppEstimate6); layoutApplicantEstimate3.addComponent(tfDynamicAppEstimate7); layoutApplicantEstimate3.addComponent(tfDynamicAppEstimate8); layoutApplicantEstimate4.addComponent(lblTotal); layoutApplicantEstimate4.addComponent(tfTotalval); layoutApplicantEstimate.addComponent(btnDynamicAppEstimate); layoutApplicantEstimate.setComponentAlignment(btnDynamicAppEstimate, Alignment.TOP_RIGHT); layoutApplicantEstimate.addComponent(layoutApplicantEstimate1); layoutApplicantEstimate.addComponent(layoutApplicantEstimate2); layoutApplicantEstimate.addComponent(layoutApplicantEstimate3); layoutApplicantEstimate.addComponent(layoutApplicantEstimate4); layoutApplicantEstimate2.setVisible(true); layoutApplicantEstimate3.setVisible(true); layoutApplicantEstimate.setMargin(true); tfDynamicAppEstimate2.setValue("0.00"); tfDetailVal2.setValue("0.00"); tfDetailVal1.setValue("0.00"); tfDynamicAppEstimate4.setValue("0.00"); tfDynamicAppEstimate6.setValue("0.00"); tfDynamicAppEstimate8.setValue("0.00"); tfDetailVal3.setValue("0.00"); tfTotalval.setImmediate(true); tfTotalval.addBlurListener(new BlurListener() { private static final long serialVersionUID = 1L; @Override public void blur(BlurEvent event) { // TODO Auto-generated method stub BigDecimal appEstimate = new BigDecimal(0.00); BigDecimal test = new BigDecimal("0.00"); BigDecimal test1 = new BigDecimal("0.00"); BigDecimal test2 = new BigDecimal("0.00"); BigDecimal test3 = new BigDecimal("0.00"); BigDecimal test4 = new BigDecimal("0.00"); BigDecimal test5 = new BigDecimal("0.00"); BigDecimal test6 = new BigDecimal("0.00"); try { test = new BigDecimal(tfDetailVal1.getValue()); } catch (Exception e) { test = new BigDecimal("0.00"); } try { test1 = new BigDecimal(tfDetailVal2.getValue()); } catch (Exception e) { test1 = new BigDecimal("0.00"); } try { test2 = new BigDecimal(tfDetailVal3.getValue()); } catch (Exception e) { test2 = new BigDecimal("0.00"); } try { test3 = new BigDecimal(tfDynamicAppEstimate2.getValue()); } catch (Exception e) { test3 = new BigDecimal("0.00"); } try { test4 = new BigDecimal(tfDynamicAppEstimate4.getValue()); } catch (Exception e) { test4 = new BigDecimal("0.00"); } try { test5 = new BigDecimal(tfDynamicAppEstimate6.getValue()); } catch (Exception e) { test4 = new BigDecimal("0.00"); } try { test6 = new BigDecimal(tfDynamicAppEstimate8.getValue()); } catch (Exception e) { test4 = new BigDecimal("0.00"); } appEstimate = appEstimate.add(test).add(test1).add(test2).add(test3).add(test4).add(test5) .add(test6); tfTotalval.setValue(appEstimate.toString()); tfAppEstimate.setValue(appEstimate.toString()); } }); //for applicant reasonable layoutApplicantReasonable.setSpacing(true); layoutApplicantReasonable1.setSpacing(true); layoutApplicantReasonable2.setSpacing(true); layoutApplicantReasonable1.setColumns(2); layoutApplicantReasonable2.setColumns(2); layoutApplicantReasonable1.setVisible(false); layoutApplicantReasonable2.addComponent(lblAppReasonable); layoutApplicantReasonable2.addComponent(slAppReasonable); layoutApplicantReasonable1.addComponent(lblReasonEstimate); layoutApplicantReasonable1.addComponent(tfReasonEstimateVal); layoutApplicantReasonable1.addComponent(lblDtlsAppReasonable); layoutApplicantReasonable1.addComponent(tfDtlsAppReasonable); layoutApplicantReasonable1.addComponent(tfDetailsReason1); layoutApplicantReasonable1.addComponent(tfDetailReasonVal1); layoutApplicantReasonable1.addComponent(tfDetailsReason2); layoutApplicantReasonable1.addComponent(tfDetailReasonVal2); layoutApplicantReasonable1.addComponent(tfDetailsReason3); layoutApplicantReasonable1.addComponent(tfDetailReasonVal3); layoutApplicantReasonable1.addComponent(tfDynamicAppReason1); layoutApplicantReasonable1.addComponent(tfDynamicAppReason2); layoutApplicantReasonable1.addComponent(tfDynamicAppReason3); layoutApplicantReasonable1.addComponent(tfDynamicAppReason4); layoutApplicantReasonable1.addComponent(lblReasonTotal); layoutApplicantReasonable1.addComponent(tfReasonTotalval); tfDynamicAppReason1.setVisible(false); tfDynamicAppReason2.setVisible(false); tfDynamicAppReason3.setVisible(false); tfDynamicAppReason4.setVisible(false); layoutApplicantReasonable.addComponent(btnDynamicAppReason); layoutApplicantReasonable.setComponentAlignment(btnDynamicAppReason, Alignment.TOP_RIGHT); layoutApplicantReasonable.addComponent(layoutApplicantReasonable2); layoutApplicantReasonable.addComponent(layoutApplicantReasonable1); layoutApplicantReasonable.setMargin(true); tfDetailReasonVal1.setValue("0.00"); tfDetailReasonVal2.setValue("0.00"); tfDetailReasonVal3.setValue("0.00"); tfReasonTotalval.setImmediate(true); tfReasonTotalval.addBlurListener(new BlurListener() { private static final long serialVersionUID = 1L; @Override public void blur(BlurEvent event) { // TODO Auto-generated method stubBigDecimal appEstimate =new BigDecimal(0.00); BigDecimal appReason = new BigDecimal(0.00); BigDecimal test = new BigDecimal("0.00"); BigDecimal test1 = new BigDecimal("0.00"); BigDecimal test2 = new BigDecimal("0.00"); BigDecimal test3 = new BigDecimal("0.00"); BigDecimal test4 = new BigDecimal("0.00"); try { test = new BigDecimal(tfDetailReasonVal1.getValue()); } catch (Exception e) { test = new BigDecimal("0.00"); } try { test1 = new BigDecimal(tfDetailReasonVal2.getValue()); } catch (Exception e) { test1 = new BigDecimal("0.00"); } try { test2 = new BigDecimal(tfDetailReasonVal3.getValue()); } catch (Exception e) { test2 = new BigDecimal("0.00"); } try { test3 = new BigDecimal(tfDynamicAppReason2.getValue()); } catch (Exception e) { test3 = new BigDecimal("0.00"); } try { test4 = new BigDecimal(tfDynamicAppReason2.getValue()); } catch (Exception e) { test4 = new BigDecimal("0.00"); } appReason = appReason.add(test).add(test1).add(test2).add(test3).add(test4); tfReasonTotalval.setValue(appReason.toString()); tfReasonEstimateVal.setValue(appReason.toString()); } }); slAppReasonable.setImmediate(true); slAppReasonable.setNullSelectionAllowed(false); slAppReasonable.addListener(new Property.ValueChangeListener() { private static final long serialVersionUID = 1L; public void valueChange(ValueChangeEvent event) { if (slAppReasonable.getValue() != null) { if (slAppReasonable.getValue().equals(Common.NO_DESC)) { layoutApplicantReasonable1.setVisible(true); btnDynamicAppReason.setVisible(true); } else { layoutApplicantReasonable1.setVisible(false); btnDynamicAppReason.setVisible(false); } } } }); //Earth quake layoutEarthquake1.setSpacing(true); layoutEarthquake1.setColumns(4); layoutEarthquake1.addComponent(slEarthQuake); layoutEarthquake1.addComponent(tfDynamicEarthquake1); layoutEarthquake1.addComponent(tfDynamicEarthquake2); tfDynamicEarthquake1.setVisible(false); tfDynamicEarthquake2.setVisible(false); layoutEarthquake.addComponent(btnDynamicEarthQuake); layoutEarthquake.setComponentAlignment(btnDynamicEarthQuake, Alignment.TOP_RIGHT); layoutEarthquake.addComponent(layoutEarthquake1); layoutEarthquake.setMargin(true); // cost of construction layoutCost.setColumns(2); layoutCostConstruction1.setColumns(2); layoutCostConstruction2.setColumns(2); layoutCostConstruction.setSpacing(true); layoutCost.setSpacing(true); layoutCostConstruction2.setSpacing(true); layoutCostConstruction1.setSpacing(true); layoutCostConstruction1.setSpacing(true); layoutCost.addComponent(lblCostConst); layoutCost.addComponent(tfCostConstruction); layoutCostConstruction1.addComponent(tfDynamicCostConst1); layoutCostConstruction1.addComponent(tfDynamicCostConst2); layoutCostConstruction1.addComponent(tfDynamicCostConst3); layoutCostConstruction1.addComponent(tfDynamicCostConst4); layoutCostConstruction1.addComponent(tfDynamicCostConst5); layoutCostConstruction1.addComponent(tfDynamicCostConst6); layoutCostConstruction2.addComponent(tfDynamicCostConst7); layoutCostConstruction2.addComponent(tfDynamicCostConst8); layoutCostConstruction2.addComponent(tfDynamicCostConst9); layoutCostConstruction2.addComponent(tfDynamicCostConst10); layoutCostConstruction1.setVisible(false); layoutCostConstruction2.setVisible(false); layoutCostConstruction.addComponent(btnDynamicCostConst); layoutCostConstruction.setComponentAlignment(btnDynamicCostConst, Alignment.TOP_RIGHT); layoutCostConstruction.addComponent(layoutCost); layoutCostConstruction.addComponent(layoutCostConstruction1); layoutCostConstruction.addComponent(layoutCostConstruction2); layoutCostConstruction.setMargin(true); //valuation of Building formConstValuation1.addComponent(slTypeBuilding); formConstValuation1.addComponent(slBuildStructure); formConstValuation1.addComponent(tfYearConstructionBuild); formConstValuation1.addComponent(slExterior); formConstValuation1.addComponent(slInterior); formConstValuation1.addComponent(tfLifeAge); formConstValuation1.addComponent(tfFutureLife); formConstValuation1.addComponent(tfDetailsPlan); formConstValuation1.addComponent(slDeviation); formConstValuation1.addComponent(tfDtlsDeviation); formConstValuation2.addComponent(btnAddRoofHt); formConstValuation2.addComponent(tfBuildNoFloors); layoutBuildtValuation.setSpacing(true); layoutBuildtValuation1.setSpacing(true); layoutBuildtValuation1.setColumns(2); layoutBuildtValuation1.addComponent(formConstValuation1); layoutBuildtValuation1.addComponent(new VerticalLayout() { { addComponent(formConstValuation2); addComponent(layoutRoofHeight); } }); formConstValuation1.addComponent(tfDynamicBuildval1); formConstValuation1.addComponent(tfDynamicBuildval2); layoutBuildtValuation.addComponent(btnDynamicBuildVal); layoutBuildtValuation.setComponentAlignment(btnDynamicBuildVal, Alignment.TOP_RIGHT); layoutBuildtValuation.addComponent(layoutBuildtValuation1); layoutBuildtValuation.setMargin(true); // for Guideline area layoutGuideline.addComponent(btnAddGuideline); layoutGuideline.setComponentAlignment(btnAddGuideline, Alignment.TOP_RIGHT); layoutGuideline.setMargin(true); layoutGuideline.addComponent(new ComponentIterGuideline("Land", "", "", "")); layoutGuideline.addComponent(new ComponentIterGuideline("Building", "", "", "")); // for guide line reference streetLayout.addComponent(slStreetSerNo); streetLayout.addComponent(tfStreetName); layoutGuidelineReference1.setColumns(4); layoutGuidelineReference1.setSpacing(true); layoutGuidelineReference1.addComponent(tfZone); layoutGuidelineReference1.addComponent(tfSRO); layoutGuidelineReference1.addComponent(tfVillage); layoutGuidelineReference1.addComponent(tfRevnueDist); layoutGuidelineReference1.addComponent(tfTalukName); layoutGuidelineReference1.addComponent(streetLayout); layoutGuidelineReference1.addComponent(tfGuidelineValue); layoutGuidelineReference1.addComponent(tfGuidelineValueMatric); layoutGuidelineReference1.addComponent(slClassification); layoutGuidelineReference1.setMargin(true); layoutGuidelineReference.setSpacing(true); layoutGuidelineReference.addComponent(layoutGuidelineReference1); //add components in main panel accordion.setWidth("100%"); layoutEvaluationDetails.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutEvaluationDetails), "Evaluation Details"); layoutOwnerDetails.setStyleName("bluebar"); layoutAssetDetails.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutAssetOwner), "Owner Details/Asset Details"); layoutNormalLegal.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutNormalLegal), "Document Details"); panelAdjoinProperties.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(panelAdjoinProperties), "Adjoining Properties"); panelDimension.setStyleName("bluebar"); accordion.addTab(panelDimension, "Dimension"); layoutmachingBoundary.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutmachingBoundary), "Matching of Boundaries And Tenure/Occupancy Details"); layoutNoofRooms.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutNoofRooms), "No. of Rooms/No. of Floors"); layoutAreaDetails.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutAreaDetails), "Area Details of the Property"); layoutValuationLand.setStyleName("bluebar"); accordion.addTab(layoutValuationLand, "Valuation of Land"); //for Building vlConstPlanApp.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(vlConstPlanApp), "Details of Existing Plan Approval"); layoutBuildtValuation.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutBuildtValuation), "Details of Building"); layoutPlintharea.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutPlintharea), "Plinth Area Details"); panelBuildSpecfication.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(panelBuildSpecfication), "Specification of the building(Existing)"); layoutValuationDetails.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutValuationDetails), "Details of Valuation"); layoutExtraAddItems1.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutExtraAddItems1), "Extra/Additional Items"); layoutMiscellService1.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutMiscellService1), "Miscellaneous/Services"); //for construction layoutPlanApproval.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutPlanApproval), "Details of Plan Approval"); layoutConstValuation.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutConstValuation), "Details of Construction"); layoutApplicantEstimate.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutApplicantEstimate), "Applicant Estimate"); layoutApplicantReasonable.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutApplicantReasonable), "Applicant Reasonable"); vlPlinthAreaNew.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(vlPlinthAreaNew), "Plinth Area Details for Construction"); panelBuildSpecficationNew.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(panelBuildSpecficationNew), "Specification of the building"); layoutMainForm.addComponent(PanelGenerator.createPanel(accordion)); layoutConstruction.setStyleName("bluebar"); layoutViolation.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutConstViolation), "Construction/Violation Details"); layoutEarthquake.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutEarthquake), "Earth Quake Details"); layoutCostConstruction.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutCostConstruction), "Cost of Construction"); layoutGuideline.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutGuideline), "Guideline Details"); layoutGuidelineReference.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutGuidelineReference), "Guideline Reference Details"); layoutPropertyValue.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutPropertyValue), "Property Value Details"); layoutMainForm.setMargin(true); layoutMainForm.setSpacing(true); this.accordion.addListener(new SelectedTabChangeListener() { public void selectedTabChange(SelectedTabChangeEvent event) { if (event.getTabSheet().getSelectedTab().equals(panelDimension)) { Iterator<Component> myComps = panelDimension.getComponentIterator(); BigDecimal siteArea = new BigDecimal(0.00); while (myComps.hasNext()) { final Component component = myComps.next(); int i = 1; if (component instanceof ComponentIterDimensionofPlot) { ComponentIterDimensionofPlot mycomponent = (ComponentIterDimensionofPlot) component; List<TPemCmPropDimension> getList = mycomponent.getDimensionPropertyList(); try { List<String> mylist = mycomponent.getLeastValaue(); siteArea = siteArea.add(new BigDecimal(mylist.get(0).replaceAll("[^\\d.]", ""))); tfNorthandSouth.setValue(mylist.get(1)); tfSiteArea.setValue(siteArea.toString()); } catch (Exception e) { logger.info("Error-->" + e); } } } BigDecimal site = new BigDecimal(0.00); BigDecimal fair = new BigDecimal(1.00); BigDecimal salbale = new BigDecimal(435.60); try { site = new BigDecimal(tfSiteArea.getValue().replaceAll("[^\\d.]", "")); } catch (Exception e) { site = new BigDecimal("0.00"); } try { site.divide(salbale, 2, RoundingMode.HALF_UP).toPlainString(); fair.multiply(site.divide(salbale, 2, RoundingMode.HALF_UP)) .multiply(new BigDecimal(tfAdopetdMarketRate.getValue().replaceAll("[^\\d.]", ""))); tfSiteArea.setValue(site.toString() + " sft (or) " + site.divide(salbale, 2, RoundingMode.HALF_UP).toPlainString() + " cents"); tfSalableArea.setValue(site.toString() + " sft (or) " + site.divide(salbale, 2, RoundingMode.HALF_UP).toPlainString() + " cents"); tfAreaofLand.setValue(site.toString() + " sft (or) " + site.divide(salbale, 2, RoundingMode.HALF_UP).toPlainString() + " cents"); tfFairMarketRate.setValue(XMLUtil.IndianFormat(new BigDecimal(fair .multiply(site.divide(salbale, 2, RoundingMode.HALF_UP)) .multiply(new BigDecimal(tfAdopetdMarketRate.getValue().replaceAll("[^\\d.]", ""))) .toString()))); } catch (Exception e) { } } } }); // for main panel layoutButton2.setSpacing(true); btnSave.setStyleName("savebt"); btnCancel.setStyleName("cancelbt"); //saveExcel.addStyleName("downloadbt"); btnSubmit.setStyleName("savebt"); btnSave.setVisible(false); btnCancel.setVisible(false); //saveExcel.setVisible(false); btnSubmit.setVisible(false); layoutButton2.addComponent(btnSave); layoutButton2.addComponent(btnSubmit); //layoutButton2.addComponent(saveExcel); layoutButton2.addComponent(btnCancel); hlHeaderLayout.addComponent(layoutButton2); hlHeaderLayout.setComponentAlignment(layoutButton2, Alignment.BOTTOM_RIGHT); // Initaited the Label Function here by Hohul lblTableTitle = new Label(); lblSaveNotification = new Label(); lblSaveNotification.setContentMode(ContentMode.HTML); lblNotificationIcon = new Label(); lblTableTitle.setValue("<B> Action:</B>"); lblTableTitle.setContentMode(ContentMode.HTML); lblFormTittle = new Label(); lblFormTittle.setContentMode(ContentMode.HTML); lblFormTittle.setValue(" <b>" + screenName + "</b> :: Home"); lblFormTitle1 = new Label(); lblFormTitle1.setContentMode(ContentMode.HTML); lblFormTitle1.setValue(" <b>" + screenName + "</b> :: "); lblAddEdit = new Label(); lblAddEdit.setContentMode(ContentMode.HTML); // Button Back declaration by Hohul btnBack = new Button("Home", this); btnBack.setStyleName("link"); // Bread Scrumbs initiated here by Hohul hlBreadCrumbs = new HorizontalLayout(); hlBreadCrumbs.addComponent(lblFormTitle1); hlBreadCrumbs.addComponent(btnBack); hlBreadCrumbs.setComponentAlignment(btnBack, Alignment.TOP_CENTER); hlBreadCrumbs.addComponent(lblAddEdit); hlBreadCrumbs.setComponentAlignment(lblAddEdit, Alignment.MIDDLE_CENTER); hlBreadCrumbs.setVisible(false); /*String basepath = VaadinService.getCurrent() .getBaseDirectory().getAbsolutePath(); Resource res = new FileResource(new File(basepath + "/WEB-INF/view/channel.doc")); FileDownloader fd = new FileDownloader(res); fd.extend(saveExcel);*/ mainPanel.addComponent(layoutMainForm); mainPanel.setVisible(false); // for search panel // for search panel // Added by Hohul -----> For Search Panel Layouts FormLayout flSearchEvalNumber = new FormLayout(); flSearchEvalNumber.addComponent(tfSearchEvalNumber); FormLayout flSearchBankbranch = new FormLayout(); flSearchBankbranch.addComponent(tfSearchBankbranch); FormLayout flSearchCustomer = new FormLayout(); flSearchCustomer.addComponent(tfSearchCustomer); HorizontalLayout hlSearchComponentLayout = new HorizontalLayout(); hlSearchComponentLayout.addComponent(flSearchEvalNumber); hlSearchComponentLayout.addComponent(flSearchBankbranch); hlSearchComponentLayout.addComponent(flSearchCustomer); hlSearchComponentLayout.setSpacing(true); hlSearchComponentLayout.setMargin(true); //Initialization and properties for btnDownload btnDownload = new Button("Download"); //btnDownload.setDescription("Download"); btnDownload.addStyleName("downloadbt"); btnDownload.addClickListener(new ClickListener() { @Override public void buttonClick(ClickEvent event) { // UI.getCurrent()..clearDashboardButtonBadge(); event.getButton().removeStyleName("unread"); if (notifications != null && notifications.getUI() != null) notifications.close(); else { buildNotifications(event); UI.getCurrent().addWindow(notifications); notifications.focus(); ((VerticalLayout) UI.getCurrent().getContent()) .addLayoutClickListener(new LayoutClickListener() { @Override public void layoutClick(LayoutClickEvent event) { notifications.close(); ((VerticalLayout) UI.getCurrent().getContent()).removeLayoutClickListener(this); } }); } } }); hlFileDownloadLayout = new HorizontalLayout(); hlFileDownloadLayout.setSpacing(true); hlFileDownloadLayout.addComponent(btnDownload); hlFileDownloadLayout.setComponentAlignment(btnDownload, Alignment.MIDDLE_CENTER); VerticalLayout vlSearchandResetButtonLAyout = new VerticalLayout(); vlSearchandResetButtonLAyout.setSpacing(true); vlSearchandResetButtonLAyout.addComponent(btnReset); vlSearchandResetButtonLAyout.setWidth("100"); vlSearchandResetButtonLAyout.addStyleName("topbarthree"); vlSearchandResetButtonLAyout.setMargin(true); HorizontalLayout hlSearchComponentandButtonLayout = new HorizontalLayout(); hlSearchComponentandButtonLayout.setSizeFull(); hlSearchComponentandButtonLayout.setSpacing(true); hlSearchComponentandButtonLayout.addComponent(hlSearchComponentLayout); hlSearchComponentandButtonLayout.setComponentAlignment(hlSearchComponentLayout, Alignment.MIDDLE_LEFT); hlSearchComponentandButtonLayout.addComponent(vlSearchandResetButtonLAyout); hlSearchComponentandButtonLayout.setComponentAlignment(vlSearchandResetButtonLAyout, Alignment.MIDDLE_RIGHT); hlSearchComponentandButtonLayout.setExpandRatio(vlSearchandResetButtonLAyout, 1); final VerticalLayout vlSearchComponentandButtonLayout = new VerticalLayout(); vlSearchComponentandButtonLayout.setSpacing(true); vlSearchComponentandButtonLayout.setSizeFull(); vlSearchComponentandButtonLayout.addComponent(hlSearchComponentandButtonLayout); /*layoutSearch.addComponent(tfSearchEvalNumber); layoutSearch.addComponent(tfSearchBankbranch); layoutSearch.addComponent(tfSearchCustomer); //layoutSearch.addComponent(btnSearch); layoutSearch.addComponent(btnReset); //layoutSearch.setComponentAlignment(btnSearch, Alignment.BOTTOM_LEFT); layoutSearch.setComponentAlignment(btnReset, Alignment.BOTTOM_LEFT); //btnSearch.addStyleName("default"); */ btnReset.addStyleName("resetbt"); tfSearchCustomer.setImmediate(true); tfSearchCustomer.addListener(new TextChangeListener() { private static final long serialVersionUID = 1L; SimpleStringFilter filter = null; public void textChange(TextChangeEvent event) { Filterable f = (Filterable) tblEvalDetails.getContainerDataSource(); if (filter != null) f.removeContainerFilter(filter); filter = new SimpleStringFilter("custName", event.getText(), true, false); f.addContainerFilter(filter); total = f.size(); tblEvalDetails.setColumnFooter("lastUpdateDt", "No. of Records:" + total); } }); tfSearchEvalNumber.setImmediate(true); tfSearchEvalNumber.addListener(new TextChangeListener() { private static final long serialVersionUID = 1L; SimpleStringFilter filter = null; public void textChange(TextChangeEvent event) { Filterable f = (Filterable) tblEvalDetails.getContainerDataSource(); if (filter != null) f.removeContainerFilter(filter); filter = new SimpleStringFilter("evalNo", event.getText(), true, false); f.addContainerFilter(filter); total = f.size(); tblEvalDetails.setColumnFooter("lastUpdateDt", "No. of Records:" + total); } }); tfSearchBankbranch.setImmediate(true); tfSearchBankbranch.addValueChangeListener(new Property.ValueChangeListener() { private static final long serialVersionUID = 1L; Filter filter = null; @Override public void valueChange(ValueChangeEvent event) { // TODO Auto-generated method stub try { String strBankBranch = tfSearchBankbranch.getValue().toString(); Filterable f = (Filterable) tblEvalDetails.getContainerDataSource(); if (filter != null) f.removeContainerFilter(filter); filter = new Compare.Equal("bankBranch", strBankBranch); f.addContainerFilter(filter); f.addContainerFilter(filter); total = f.size(); tblEvalDetails.setColumnFooter("lastUpdateDt", "No. of Records:" + total); } catch (Exception e) { } } }); searchPanel.addComponent(PanelGenerator.createPanel(vlSearchComponentandButtonLayout)); searchPanel.setMargin(true); // Add Layout table panel by Hohul HorizontalLayout flTableCaption = new HorizontalLayout(); flTableCaption.addComponent(lblTableTitle); flTableCaption.setComponentAlignment(lblTableTitle, Alignment.MIDDLE_CENTER); flTableCaption.addStyleName("lightgray"); flTableCaption.setHeight("25px"); flTableCaption.setWidth("60px"); lblNoofRecords = new Label(" ", ContentMode.HTML); lblNoofRecords.addStyleName("lblfooter"); HorizontalLayout hlTableTittleLayout = new HorizontalLayout(); hlTableTittleLayout.addComponent(flTableCaption); hlTableTittleLayout.addComponent(btnAdd); hlTableTittleLayout.addComponent(btnEdit); hlTableTittleLayout.addComponent(btnView); hlTableTittleLayout.setHeight("25px"); hlTableTittleLayout.setSpacing(true); HorizontalLayout hlTableTitleandCaptionLayout = new HorizontalLayout(); hlTableTitleandCaptionLayout.addStyleName("topbarthree"); hlTableTitleandCaptionLayout.setWidth("100%"); hlTableTitleandCaptionLayout.addComponent(hlTableTittleLayout); hlTableTitleandCaptionLayout.addComponent(hlFileDownloadLayout); hlTableTitleandCaptionLayout.setComponentAlignment(hlFileDownloadLayout, Alignment.MIDDLE_RIGHT); hlTableTitleandCaptionLayout.setHeight("28px"); // for table panel btnAdd.addStyleName("add"); btnEdit.addStyleName("editbt"); btnView.addStyleName("view"); btnView.setEnabled(false); hlAddEditLayout.addStyleName("topbarthree"); hlAddEditLayout.setWidth("100%"); hlAddEditLayout.addComponent(hlTableTitleandCaptionLayout); hlAddEditLayout.setHeight("28px"); // Added Action Label to Table layoutTable.addComponent(hlAddEditLayout); layoutTable.setComponentAlignment(hlAddEditLayout, Alignment.TOP_LEFT); layoutTable.addComponent(tblEvalDetails); tablePanel.addComponent(layoutTable); tablePanel.setWidth("100%"); tablePanel.setMargin(true); layoutPage.addComponent(mainPanel); layoutPage.addComponent(searchPanel); layoutPage.addComponent(tablePanel); // Added labels and titles to respective Location by Hohul HorizontalLayout hlNotificationLayout = new HorizontalLayout(); hlNotificationLayout.addComponent(lblNotificationIcon); hlNotificationLayout.setComponentAlignment(lblNotificationIcon, Alignment.MIDDLE_LEFT); hlNotificationLayout.addComponent(lblSaveNotification); hlNotificationLayout.setComponentAlignment(lblSaveNotification, Alignment.MIDDLE_LEFT); hlHeaderLayout.addComponent(lblFormTittle); hlHeaderLayout.setComponentAlignment(lblFormTittle, Alignment.MIDDLE_LEFT); hlHeaderLayout.addComponent(hlBreadCrumbs); hlHeaderLayout.setComponentAlignment(hlBreadCrumbs, Alignment.MIDDLE_LEFT); hlHeaderLayout.addComponent(hlNotificationLayout); hlHeaderLayout.setComponentAlignment(hlNotificationLayout, Alignment.MIDDLE_LEFT); hlHeaderLayout.addComponent(layoutButton2); hlHeaderLayout.setComponentAlignment(layoutButton2, Alignment.MIDDLE_RIGHT); hlHeaderLayout.addComponent(layoutButton2); hlHeaderLayout.setComponentAlignment(layoutButton2, Alignment.BOTTOM_RIGHT); /*tfEvaluationNumber.addValidator(new IntegerValidator("Enter numbers only")); tfEvaluationNumber.addBlurListener(new SaarcValidate(tfEvaluationNumber));*/ tfEvaluationNumber.setImmediate(true); tfEvaluationNumber.addBlurListener(new BlurListener() { private static final long serialVersionUID = 1L; public void blur(BlurEvent event) { // TODO Auto-generated method stub if (!tfEvaluationNumber.isReadOnly()) { tfEvaluationNumber.setComponentError(null); try { tfEvaluationNumber.setComponentError(null); String evalno = tfEvaluationNumber.getValue().toString(); count = beanEvaluation.getEvalNoCount(evalno); if (tfEvaluationNumber.getValue() != null && tfEvaluationNumber.getValue().trim().length() > 0) { if (count == 0) { tfEvaluationNumber.setComponentError(null); } else { tfEvaluationNumber .setComponentError(new UserError("Evaluation number is already Exist")); } } } catch (Exception e) { } } } }); // load Component list values loadComponentListValues(); //setTableProperties(); populateAndConfig(false); }
From source file:com.gnts.pem.txn.synd.SyndFlat.java
License:Open Source License
@SuppressWarnings("deprecation") void buildView(VerticalLayout layoutPage, HorizontalLayout hlHeaderLayout) { // for component width hlHeaderLayout.removeAllComponents(); setComponentStyle();/* ww w . j a va 2 s .co m*/ tblEvalDetails = new Table(); tblEvalDetails.setStyleName(Runo.TABLE_SMALL); tblEvalDetails.setPageLength(14); tblEvalDetails.setSizeFull(); tblEvalDetails.setFooterVisible(true); tblEvalDetails.setSelectable(true); tblEvalDetails.setImmediate(true); tblEvalDetails.setColumnCollapsingAllowed(true); // for evaluation details tfEvaluationPurpose.setValue("Collateral Security to the Bank"); tfEvaluationNumber.setRequired(true); slBankBranch.setRequired(true); dfDateofValuation.setRequired(true); tfEvaluationPurpose.setRequired(true); layoutEvaluationDetails1.setColumns(4); layoutEvaluationDetails1.addComponent(tfEvaluationNumber); layoutEvaluationDetails1.addComponent(slBankBranch); layoutEvaluationDetails1.addComponent(tfEvaluationPurpose); layoutEvaluationDetails1.addComponent(tfValuatedBy); layoutEvaluationDetails1.addComponent(dfDateofValuation); layoutEvaluationDetails1.addComponent(dfVerifiedDate); layoutEvaluationDetails1.addComponent(tfVerifiedBy); layoutEvaluationDetails1.addComponent(tfDynamicEvaluation1); layoutEvaluationDetails1.addComponent(tfDynamicEvaluation2); tfDynamicEvaluation1.setVisible(false); tfDynamicEvaluation2.setVisible(false); layoutEvaluationDetails1.setSpacing(true); layoutEvaluationDetails1.setMargin(true); layoutEvaluationDetails.addComponent(btnDynamicEvaluation1); layoutEvaluationDetails.setComponentAlignment(btnDynamicEvaluation1, Alignment.TOP_RIGHT); layoutEvaluationDetails.addComponent(layoutEvaluationDetails1); // for asset details VerticalLayout formAsset1 = new VerticalLayout(); VerticalLayout formAsset2 = new VerticalLayout(); VerticalLayout formAsset3 = new VerticalLayout(); VerticalLayout formAsset4 = new VerticalLayout(); formAsset1.setSpacing(true); formAsset2.setSpacing(true); formAsset4.setSpacing(true); formAsset1.addComponent(tfCustomerName); formAsset1.addComponent(tfLandMark); formAsset1.addComponent(slPropertyDesc); formAsset2.addComponent(tfCustomerAddr); formAsset3.addComponent(tfPropertyAddress); formAsset3.addComponent(chkSameAddress); formAsset4.addComponent(tfDynamicAsset1); formAsset4.addComponent(tfDynamicAsset2); tfDynamicAsset1.setVisible(false); tfDynamicAsset2.setVisible(false); tfCustomerName.setRequired(true); chkSameAddress.setImmediate(true); chkSameAddress.addListener(new Property.ValueChangeListener() { private static final long serialVersionUID = 1L; public void valueChange(ValueChangeEvent event) { if (chkSameAddress.getValue().equals(true)) { tfPropertyAddress.setValue(tfCustomerAddr.getValue()); } else { tfPropertyAddress.setValue(""); } } }); layoutAssetDetails1.setSpacing(true); layoutAssetDetails1.setColumns(4); layoutAssetDetails1.addComponent(formAsset1); layoutAssetDetails1.addComponent(formAsset2); layoutAssetDetails1.addComponent(formAsset3); layoutAssetDetails1.addComponent(formAsset4); layoutAssetDetails1.setMargin(true); layoutAssetDetails.addComponent(btnDynamicAsset); layoutAssetDetails.setComponentAlignment(btnDynamicAsset, Alignment.TOP_RIGHT); layoutAssetDetails.addComponent(layoutAssetDetails1); lblHeading = new Label("Owner Details"); layoutAssetOwner.addComponent(lblHeading); lblHeading.setStyleName("h4"); layoutAssetOwner.addComponent(PanelGenerator.createPanel(layoutOwnerDetails)); lblHeading = new Label("Asset Details"); layoutAssetOwner.addComponent(lblHeading); lblHeading.setStyleName("h4"); layoutAssetOwner.addComponent(PanelGenerator.createPanel(layoutAssetDetails)); // for document details panelNormalDocumentDetails.addComponent(btnAddNorDoc); panelNormalDocumentDetails.setComponentAlignment(btnAddNorDoc, Alignment.TOP_RIGHT); panelNormalDocumentDetails.addComponent(new ComponentIteratorNormlDoc(null, null, "", "")); panelNormalDocumentDetails.setMargin(true); panelLegalDocumentDetails.addComponent(btnAddLegalDoc); panelLegalDocumentDetails.setComponentAlignment(btnAddLegalDoc, Alignment.TOP_RIGHT); panelLegalDocumentDetails.addComponent(new ComponentIteratorLegalDoc("", "", null)); panelLegalDocumentDetails.setMargin(true); layoutNormalLegal.addComponent(PanelGenerator.createPanel(panelNormalDocumentDetails)); lblHeading = new Label("Legal Documents"); layoutNormalLegal.addComponent(lblHeading); lblHeading.setStyleName("h4"); layoutNormalLegal.addComponent(PanelGenerator.createPanel(panelLegalDocumentDetails)); layoutNormalLegal.setMargin(true); //for Owner Details layoutOwnerDetails.addComponent(btnAddOwner); layoutOwnerDetails.setComponentAlignment(btnAddOwner, Alignment.TOP_RIGHT); layoutOwnerDetails1.setColumns(4); layoutOwnerDetails1.addComponent(new ComponentIterOwnerDetails("", "")); layoutOwnerDetails.addComponent(layoutOwnerDetails1); layoutOwnerDetails1.setSpacing(true); layoutOwnerDetails1.setMargin(true); // for adjoin properties panelAdjoinProperties.addComponent(btnAddAdjoinProperty); panelAdjoinProperties.setComponentAlignment(btnAddAdjoinProperty, Alignment.BOTTOM_RIGHT); panelAdjoinProperties.addComponent(new ComponentIteratorAdjoinProperty(null, true, true, true)); // for dimensions panelDimension.addComponent(btnAddDimension); panelDimension.addComponent(lblDimension); lblDimension.setValue("Item No :" + itemDimensionNumber); panelDimension.setComponentAlignment(btnAddDimension, Alignment.BOTTOM_RIGHT); panelDimension.addComponent(new ComponentIterDimensionofPlot(null, true, true, true)); panelNormalDocumentDetails.setWidth("100%"); panelLegalDocumentDetails.setWidth("100%"); // for layoutmachingBoundary1.setSpacing(true); tfDynamicmatching1.setVisible(true); tfDynamicmatching2.setVisible(true); layoutmachingBoundary2.addComponent(btnDynamicmatching); layoutmachingBoundary2.setComponentAlignment(btnDynamicmatching, Alignment.TOP_RIGHT); layoutmachingBoundary1.setSpacing(true); layoutmachingBoundary1.addComponent(slMatchingBoundary); layoutmachingBoundary1.addComponent(slPlotDemarcated); layoutmachingBoundary1.addComponent(slApproveLandUse); layoutmachingBoundary1.addComponent(slTypeofProperty); layoutmachingBoundary1.addComponent(tfDynamicmatching1); layoutmachingBoundary1.addComponent(tfDynamicmatching2); layoutmachingBoundary1.setSpacing(true); layoutmachingBoundary1.setMargin(true); // tenure/occupancy details layoutTenureOccupay.setSpacing(true); layoutTenureOccupay1.setSpacing(true); layoutTenureOccupay2.addComponent(btnDynamicTenure); layoutTenureOccupay2.setComponentAlignment(btnDynamicTenure, Alignment.TOP_RIGHT); layoutTenureOccupay.setColumns(2); layoutTenureOccupay1.addComponent(tfStatusofTenure); layoutTenureOccupay1.addComponent(slOwnedorRent); layoutTenureOccupay1.addComponent(tfNoOfYears); layoutTenureOccupay1.addComponent(tfRelationship); layoutTenureOccupay1.addComponent(tfDynamicTenure1); layoutTenureOccupay1.addComponent(tfDynamicTenure2); layoutmachingBoundary2.addComponent(layoutmachingBoundary1); layoutTenureOccupay2.addComponent(layoutTenureOccupay1); layoutTenureOccupay.addComponent(PanelGenerator.createPanel(layoutmachingBoundary2)); layoutTenureOccupay.addComponent(PanelGenerator.createPanel(layoutTenureOccupay2)); tfDynamicTenure1.setVisible(false); tfDynamicTenure2.setVisible(false); layoutmachingBoundary1.setMargin(true); layoutTenureOccupay1.setMargin(true); layoutmachingBoundary.addComponent(layoutTenureOccupay); layoutTenureOccupay1.setMargin(true); layoutmachingBoundary.setMargin(true); // for no of rooms layoutNoofRooms2.addComponent(btnDynamicRooms); layoutNoofRooms2.setComponentAlignment(btnDynamicRooms, Alignment.TOP_RIGHT); layoutNoofRooms2.setMargin(true); layoutNoofRooms1.addComponent(tfNoofRooms); layoutNoofRooms1.addComponent(tfLivingDining); layoutNoofRooms1.addComponent(tfBedRooms); layoutNoofRooms1.addComponent(tfKitchen); layoutNoofRooms1.addComponent(tfToilets); layoutNoofRooms1.addComponent(tfDynamicRooms1); layoutNoofRooms1.addComponent(tfDynamicRooms2); tfDynamicRooms1.setVisible(false); tfDynamicRooms2.setVisible(false); layoutNoofRooms1.setSpacing(true); layoutNoofRooms2.addComponent(layoutNoofRooms1); // no of floors layoutNoofFloors.setColumns(2); layoutNoofFloors2.setMargin(true); layoutNoofFloors2.addComponent(btnDynamicFloor); layoutNoofFloors2.setComponentAlignment(btnDynamicFloor, Alignment.TOP_RIGHT); layoutNoofFloors1.addComponent(tfTotNoofFloors); layoutNoofFloors1.addComponent(tfPropertyLocated); layoutNoofFloors1.addComponent(tfApproxAgeofBuilding); layoutNoofFloors1.addComponent(tfResidualAgeofBuilding); layoutNoofFloors1.addComponent(slTypeofStructures); layoutNoofFloors1.addComponent(tfDynamicFloors1); layoutNoofFloors1.addComponent(tfDynamicFloors2); tfDynamicFloors1.setVisible(false); tfDynamicFloors2.setVisible(false); layoutNoofFloors1.setSpacing(true); layoutNoofFloors2.addComponent(layoutNoofFloors1); layoutNoofFloors.setSpacing(true); layoutNoofFloors.addComponent(PanelGenerator.createPanel(layoutNoofFloors2)); layoutNoofFloors.addComponent(PanelGenerator.createPanel(layoutNoofRooms2)); layoutNoofRooms.addComponent(layoutNoofFloors); layoutNoofRooms.setMargin(true); // area details of the property layoutAreaDetails1.setSpacing(true); layoutAreaDetails1.setColumns(4); layoutAreaDetails1.addComponent(tfSiteArea); layoutAreaDetails1.addComponent(tfCarpetArea); layoutAreaDetails1.addComponent(tfSuperbuiltup); layoutAreaDetails1.addComponent(tfSalableArea); layoutAreaDetails1.addComponent(tfRemarks); layoutAreaDetails1.addComponent(tfDynamicAreaDetail1); layoutAreaDetails1.addComponent(tfDynamicAreaDetail2); tfDynamicAreaDetail1.setVisible(false); tfDynamicAreaDetail2.setVisible(false); layoutAreaDetails.addComponent(btnDynamicAreaDetail); layoutAreaDetails.setComponentAlignment(btnDynamicAreaDetail, Alignment.TOP_RIGHT); layoutAreaDetails.addComponent(layoutAreaDetails1); layoutAreaDetails1.setMargin(true); // details of apartment building layoutApartmentBuilding1.setColumns(4); layoutApartmentBuilding1.addComponent(slNatureofApartment); layoutApartmentBuilding1.addComponent(tfNameofApartment); layoutApartmentBuilding1.addComponent(tfApartmant); layoutApartmentBuilding1.addComponent(tfFlatNumber); layoutApartmentBuilding1.addComponent(tfSFNumber); layoutApartmentBuilding1.addComponent(tfFloor); layoutApartmentBuilding1.addComponent(tfVillageLoc); layoutApartmentBuilding1.addComponent(tfTalukLoc); layoutApartmentBuilding1.addComponent(tfDisrictLoc); layoutApartmentBuilding1.addComponent(slDescriptionofLocality); layoutApartmentBuilding1.addComponent(tfNoofFloors); layoutApartmentBuilding1.addComponent(slTypeofStructure); layoutApartmentBuilding1.addComponent(tfNumberofFlats); layoutAddress.addComponent(tfPostalAddress); layoutAddress.addComponent(chkSamePostelAddress); layoutApartmentBuilding1.addComponent(layoutAddress); layoutApartmentBuilding1.addComponent(tfDynamicApartment1); layoutApartmentBuilding1.addComponent(tfDynamicApartment2); layoutApartmentBuilding1.setSpacing(true); tfDynamicApartment1.setVisible(false); tfDynamicApartment2.setVisible(false); layoutApartmentBuilding1.setMargin(true); chkSamePostelAddress.setImmediate(true); chkSamePostelAddress.addListener(new Property.ValueChangeListener() { private static final long serialVersionUID = 1L; public void valueChange(ValueChangeEvent event) { if (chkSamePostelAddress.getValue().equals(true)) { tfPostalAddress.setValue(tfPropertyAddress.getValue()); } else { tfPostalAddress.setValue(""); } } }); /* tfEvaluationNumber.addValidator(new IntegerValidator("Enter numbers only")); tfEvaluationNumber.addBlurListener(new SaarcValidate(tfEvaluationNumber));*/ tfEvaluationNumber.setImmediate(true); tfEvaluationNumber.addBlurListener(new BlurListener() { private static final long serialVersionUID = 1L; public void blur(BlurEvent event) { // TODO Auto-generated method stub if (!tfEvaluationNumber.isReadOnly()) { tfEvaluationNumber.setComponentError(null); try { tfEvaluationNumber.setComponentError(null); String evalno = tfEvaluationNumber.getValue().toString(); count = beanEvaluation.getEvalNoCount(evalno); if (tfEvaluationNumber.getValue() != null && tfEvaluationNumber.getValue().trim().length() > 0) { if (count == 0) { tfEvaluationNumber.setComponentError(null); } else { tfEvaluationNumber .setComponentError(new UserError("Evaluation number is already Exist")); } } } catch (Exception e) { } } } }); // flat under valuation layoutFlatValuation1.setColumns(4); layoutFlatValuation1.addComponent(tfFlatisSituated); layoutFlatValuation1.addComponent(tfDynamicFlatValuation1); layoutFlatValuation1.addComponent(tfDynamicFlatValuation2); tfDynamicFlatValuation1.setVisible(false); tfDynamicFlatValuation2.setVisible(false); layoutFlatValuation1.setSpacing(true); layoutFlatValuation1.setMargin(true); layoutFlatValuation.addComponent(btnDynamicFlatValuation); layoutFlatValuation.setComponentAlignment(btnDynamicFlatValuation, Alignment.TOP_RIGHT); layoutFlatValuation.addComponent(layoutFlatValuation1); // for details of plan approval layoutPlanApproval1.setColumns(4); formLand.addComponent(slLandandBuilding); formLand.addComponent(tfLandandBuilding); formBuilding.addComponent(slBuilding); formBuilding.addComponent(tfBuilding); layoutPlanApproval1.addComponent(formLand); layoutPlanApproval1.addComponent(formBuilding); layoutPlanApproval1.addComponent(tfPlanApprovedBy); layoutPlanApproval1.addComponent(dfLicenseFrom); layoutPlanApproval1.addComponent(slIsLicenceForced); layoutPlanApproval1.addComponent(slAllApprovalRecved); layoutPlanApproval1.addComponent(slConstAsperAppPlan); layoutPlanApproval1.addComponent(tfDynamicPlanApproval1); layoutPlanApproval1.addComponent(tfDynamicPlanApproval2); tfDynamicPlanApproval1.setVisible(false); tfDynamicPlanApproval2.setVisible(false); layoutPlanApproval1.setSpacing(true); layoutPlanApproval1.setMargin(true); layoutPlanApproval.addComponent(btnDynamicPlanApproval); layoutPlanApproval.setComponentAlignment(btnDynamicPlanApproval, Alignment.TOP_RIGHT); layoutPlanApproval.addComponent(layoutPlanApproval1); // for Build Specification panelBuildSpecfication.addComponent(btnAddBuildSpec); panelBuildSpecfication.setComponentAlignment(btnAddBuildSpec, Alignment.BOTTOM_RIGHT); panelBuildSpecfication.addComponent(new ComponentIterBuildingSpecfication(null, true, true, true)); panelBuildSpecfication.setWidth("100%"); // for layoutApartmentBuilding.addComponent(btnDynamicApartment); layoutApartmentBuilding.setComponentAlignment(btnDynamicApartment, Alignment.TOP_RIGHT); layoutApartmentBuilding.addComponent(layoutApartmentBuilding1); // valuation of land layoutValuationConst.setSpacing(true); layoutValuationConst1.setSpacing(true); layoutValuationConst1.addComponent(tfUndividedShare); layoutValuationConst1.addComponent(tfSuperBuiltupArea); layoutValuationConst1.addComponent(tfCostofApartment); layoutValuationConst1.addComponent(tfRateofApartment); layoutValuationConst1.addComponent(slIsRateReasonable); layoutValuationConst1.addComponent(tfStageOfConstruction); layoutValuationConst1.addComponent(tfCostOfConstAsAtSite); layoutValuationConst1.addComponent(tfCostOfConstAsPerAgree); layoutValuationConst1.addComponent(tfDynamicConstValuation1); layoutValuationConst1.addComponent(tfDynamicConstValuation2); tfDynamicConstValuation1.setVisible(false); tfDynamicConstValuation2.setVisible(false); layoutValuationConst.addComponent(btnDynamicConstValuation); layoutValuationConst.setComponentAlignment(btnDynamicConstValuation, Alignment.TOP_RIGHT); layoutValuationConst.addComponent(layoutValuationConst1); layoutValuationConst1.setMargin(true); // add components in main panel accordion.setWidth("100%"); layoutEvaluationDetails.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutEvaluationDetails), "Evaluation Details"); layoutOwnerDetails.setStyleName("bluebar"); layoutAssetDetails.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutAssetOwner), "Owner Details/Asset Details"); layoutNormalLegal.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutNormalLegal), "Document Details"); panelAdjoinProperties.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(panelAdjoinProperties), "Adjoining Properties"); panelDimension.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(panelDimension), "Dimensions"); layoutmachingBoundary.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutmachingBoundary), "Matching of Boundaries And Tenure/Occupancy Details"); layoutNoofRooms.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutNoofRooms), "No. of Rooms/No. of Floors"); layoutAreaDetails.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutAreaDetails), "Area Details of the Property"); layoutApartmentBuilding.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutApartmentBuilding), "Details of Apartment Building-Under Construction"); layoutFlatValuation.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutFlatValuation), "Flat Under Valuation"); layoutPlanApproval.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutPlanApproval), "Details of Plan Approval"); panelBuildSpecfication.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(panelBuildSpecfication), "Specification"); layoutValuationConst.setStyleName("bluebar"); accordion.addTab(PanelGenerator.createPanel(layoutValuationConst), "Valuation of under construction"); layoutMainForm.addComponent(PanelGenerator.createPanel(accordion)); layoutMainForm.setMargin(true); layoutMainForm.setSpacing(true); // for main panel layoutButton2.setSpacing(true); btnSave.setStyleName("savebt"); btnCancel.setStyleName("cancelbt"); // saveExcel.addStyleName("downloadbt"); btnSubmit.setStyleName("submitbt"); layoutButton2.addComponent(btnSave); layoutButton2.addComponent(btnSubmit); //layoutButton2.addComponent(saveExcel); layoutButton2.addComponent(btnCancel); excelexporter.setTableToBeExported(tblEvalDetails); excelexporter.setCaption("Microsoft Excel (XLS)"); excelexporter.setStyleName("borderless"); csvexporter.setTableToBeExported(tblEvalDetails); csvexporter.setCaption("Comma Dilimited (CSV)"); csvexporter.setStyleName("borderless"); pdfexporter.setTableToBeExported(tblEvalDetails); pdfexporter.setCaption("Acrobat Document (PDF)"); pdfexporter.setStyleName("borderless"); btnSave.setVisible(false); btnCancel.setVisible(false); btnSubmit.setVisible(false); //saveExcel.setVisible(false); hlHeaderLayout.addComponent(layoutButton2); hlHeaderLayout.setComponentAlignment(layoutButton2, Alignment.BOTTOM_RIGHT); // Initaited the Label Function here by Hohul lblTableTitle = new Label(); lblSaveNotification = new Label(); lblSaveNotification.setContentMode(ContentMode.HTML); lblNotificationIcon = new Label(); lblTableTitle.setValue("<B> Action:</B>"); lblTableTitle.setContentMode(ContentMode.HTML); lblFormTittle = new Label(); lblFormTittle.setContentMode(ContentMode.HTML); lblFormTittle.setValue(" <b>" + screenName + "</b> :: Home"); lblFormTitle1 = new Label(); lblFormTitle1.setContentMode(ContentMode.HTML); lblFormTitle1.setValue(" <b>" + screenName + "</b> :: "); lblAddEdit = new Label(); lblAddEdit.setContentMode(ContentMode.HTML); // Button Back declaration by Hohul btnBack = new Button("Home", this); btnBack.setStyleName("link"); // Bread Scrumbs initiated here by Hohul hlBreadCrumbs = new HorizontalLayout(); hlBreadCrumbs.addComponent(lblFormTitle1); hlBreadCrumbs.addComponent(btnBack); hlBreadCrumbs.setComponentAlignment(btnBack, Alignment.TOP_CENTER); hlBreadCrumbs.addComponent(lblAddEdit); hlBreadCrumbs.setComponentAlignment(lblAddEdit, Alignment.MIDDLE_CENTER); hlBreadCrumbs.setVisible(false); mainPanel.addComponent(layoutMainForm); mainPanel.setVisible(false); // for search panel // for search panel // Added by Hohul -----> For Search Panel Layouts FormLayout flSearchEvalNumber = new FormLayout(); flSearchEvalNumber.addComponent(tfSearchEvalNumber); FormLayout flSearchBankbranch = new FormLayout(); flSearchBankbranch.addComponent(tfSearchBankBranch); FormLayout flSearchCustomer = new FormLayout(); flSearchCustomer.addComponent(tfSearchCustomer); HorizontalLayout hlSearchComponentLayout = new HorizontalLayout(); hlSearchComponentLayout.addComponent(flSearchEvalNumber); hlSearchComponentLayout.addComponent(flSearchBankbranch); hlSearchComponentLayout.addComponent(flSearchCustomer); hlSearchComponentLayout.setSpacing(true); hlSearchComponentLayout.setMargin(true); //Initialization and properties for btnDownload btnDownload = new Button("Download"); //btnDownload.setDescription("Download"); btnDownload.addStyleName("downloadbt"); btnDownload.addClickListener(new ClickListener() { /** * */ private static final long serialVersionUID = 1L; @Override public void buttonClick(ClickEvent event) { // UI.getCurrent()..clearDashboardButtonBadge(); event.getButton().removeStyleName("unread"); if (notifications != null && notifications.getUI() != null) notifications.close(); else { buildNotifications(event); UI.getCurrent().addWindow(notifications); notifications.focus(); ((VerticalLayout) UI.getCurrent().getContent()) .addLayoutClickListener(new LayoutClickListener() { /** * */ private static final long serialVersionUID = 1L; @Override public void layoutClick(LayoutClickEvent event) { notifications.close(); ((VerticalLayout) UI.getCurrent().getContent()).removeLayoutClickListener(this); } }); } } }); hlFileDownloadLayout = new HorizontalLayout(); hlFileDownloadLayout.setSpacing(true); hlFileDownloadLayout.addComponent(btnDownload); hlFileDownloadLayout.setComponentAlignment(btnDownload, Alignment.MIDDLE_CENTER); VerticalLayout vlSearchandResetButtonLAyout = new VerticalLayout(); vlSearchandResetButtonLAyout.setSpacing(true); vlSearchandResetButtonLAyout.addComponent(btnReset); vlSearchandResetButtonLAyout.setWidth("100"); vlSearchandResetButtonLAyout.addStyleName("topbarthree"); vlSearchandResetButtonLAyout.setMargin(true); HorizontalLayout hlSearchComponentandButtonLayout = new HorizontalLayout(); hlSearchComponentandButtonLayout.setSizeFull(); hlSearchComponentandButtonLayout.setSpacing(true); hlSearchComponentandButtonLayout.addComponent(hlSearchComponentLayout); hlSearchComponentandButtonLayout.setComponentAlignment(hlSearchComponentLayout, Alignment.MIDDLE_LEFT); hlSearchComponentandButtonLayout.addComponent(vlSearchandResetButtonLAyout); hlSearchComponentandButtonLayout.setComponentAlignment(vlSearchandResetButtonLAyout, Alignment.MIDDLE_RIGHT); hlSearchComponentandButtonLayout.setExpandRatio(vlSearchandResetButtonLAyout, 1); final VerticalLayout vlSearchComponentandButtonLayout = new VerticalLayout(); vlSearchComponentandButtonLayout.setSpacing(true); vlSearchComponentandButtonLayout.setSizeFull(); vlSearchComponentandButtonLayout.addComponent(hlSearchComponentandButtonLayout); /*layoutSearch.addComponent(tfSearchEvalNumber); layoutSearch.addComponent(tfSearchBankBranch); layoutSearch.addComponent(tfSearchCustomer); layoutSearch.addComponent(btnReset); layoutSearch.setComponentAlignment(btnReset, Alignment.BOTTOM_LEFT);*/ btnReset.addStyleName("resetbt"); tfSearchCustomer.setImmediate(true); tfSearchCustomer.addListener(new TextChangeListener() { private static final long serialVersionUID = 1L; SimpleStringFilter filter = null; public void textChange(TextChangeEvent event) { Filterable f = (Filterable) tblEvalDetails.getContainerDataSource(); if (filter != null) f.removeContainerFilter(filter); filter = new SimpleStringFilter("custName", event.getText(), true, false); f.addContainerFilter(filter); total = f.size(); tblEvalDetails.setColumnFooter("lastUpdateDt", "No. of Records:" + total); } }); tfSearchEvalNumber.setImmediate(true); tfSearchEvalNumber.addListener(new TextChangeListener() { private static final long serialVersionUID = 1L; SimpleStringFilter filter = null; public void textChange(TextChangeEvent event) { Filterable f = (Filterable) tblEvalDetails.getContainerDataSource(); if (filter != null) f.removeContainerFilter(filter); filter = new SimpleStringFilter("evalNo", event.getText(), true, false); f.addContainerFilter(filter); total = f.size(); tblEvalDetails.setColumnFooter("lastUpdateDt", "No. of Records:" + total); } }); tfSearchBankBranch.setImmediate(true); tfSearchBankBranch.addValueChangeListener(new Property.ValueChangeListener() { private static final long serialVersionUID = 1L; Filter filter = null; @Override public void valueChange(ValueChangeEvent event) { // TODO Auto-generated method stub try { String strBankBranch = tfSearchBankBranch.getValue().toString(); Filterable f = (Filterable) tblEvalDetails.getContainerDataSource(); if (filter != null) f.removeContainerFilter(filter); filter = new Compare.Equal("bankBranch", strBankBranch); f.addContainerFilter(filter); total = f.size(); tblEvalDetails.setColumnFooter("lastUpdateDt", "No. of Records:" + total); f.addContainerFilter(filter); } catch (Exception e) { } } }); searchPanel.addComponent(PanelGenerator.createPanel(vlSearchComponentandButtonLayout)); searchPanel.setMargin(true); // Add Layout table panel by Hohul HorizontalLayout flTableCaption = new HorizontalLayout(); flTableCaption.addComponent(lblTableTitle); flTableCaption.setComponentAlignment(lblTableTitle, Alignment.MIDDLE_CENTER); flTableCaption.addStyleName("lightgray"); flTableCaption.setHeight("25px"); flTableCaption.setWidth("60px"); lblNoofRecords = new Label(" ", ContentMode.HTML); lblNoofRecords.addStyleName("lblfooter"); HorizontalLayout hlTableTittleLayout = new HorizontalLayout(); hlTableTittleLayout.addComponent(flTableCaption); hlTableTittleLayout.addComponent(btnAdd); hlTableTittleLayout.addComponent(btnEdit); hlTableTittleLayout.addComponent(btnView); hlTableTittleLayout.setHeight("25px"); hlTableTittleLayout.setSpacing(true); HorizontalLayout hlTableTitleandCaptionLayout = new HorizontalLayout(); hlTableTitleandCaptionLayout.addStyleName("topbarthree"); hlTableTitleandCaptionLayout.setWidth("100%"); hlTableTitleandCaptionLayout.addComponent(hlTableTittleLayout); hlTableTitleandCaptionLayout.addComponent(hlFileDownloadLayout); hlTableTitleandCaptionLayout.setComponentAlignment(hlFileDownloadLayout, Alignment.MIDDLE_RIGHT); hlTableTitleandCaptionLayout.setHeight("28px"); // for table panel btnAdd.addStyleName("add"); btnEdit.addStyleName("editbt"); btnView.addStyleName("view"); btnView.setEnabled(false); hlAddEditLayout.addStyleName("topbarthree"); hlAddEditLayout.setWidth("100%"); hlAddEditLayout.addComponent(hlTableTitleandCaptionLayout); hlAddEditLayout.setHeight("28px"); // Added Action Label to Table layoutTable.addComponent(hlAddEditLayout); layoutTable.setComponentAlignment(hlAddEditLayout, Alignment.TOP_LEFT); layoutTable.addComponent(tblEvalDetails); tablePanel.addComponent(layoutTable); tablePanel.setWidth("100%"); tablePanel.setMargin(true); layoutPage.addComponent(mainPanel); layoutPage.addComponent(searchPanel); layoutPage.addComponent(tablePanel); // Added labels and titles to respective Location by Hohul HorizontalLayout hlNotificationLayout = new HorizontalLayout(); hlNotificationLayout.addComponent(lblNotificationIcon); hlNotificationLayout.setComponentAlignment(lblNotificationIcon, Alignment.MIDDLE_CENTER); hlNotificationLayout.addComponent(lblSaveNotification); hlNotificationLayout.setComponentAlignment(lblSaveNotification, Alignment.MIDDLE_CENTER); hlHeaderLayout.addComponent(lblFormTittle); hlHeaderLayout.setComponentAlignment(lblFormTittle, Alignment.MIDDLE_LEFT); hlHeaderLayout.addComponent(hlBreadCrumbs); hlHeaderLayout.setComponentAlignment(hlBreadCrumbs, Alignment.MIDDLE_LEFT); hlHeaderLayout.addComponent(hlNotificationLayout); hlHeaderLayout.setComponentAlignment(hlNotificationLayout, Alignment.MIDDLE_CENTER); hlHeaderLayout.addComponent(layoutButton2); hlHeaderLayout.setComponentAlignment(layoutButton2, Alignment.MIDDLE_RIGHT); hlHeaderLayout.addComponent(layoutButton2); hlHeaderLayout.setComponentAlignment(layoutButton2, Alignment.BOTTOM_RIGHT); // load Component list values loadComponentListValues(); //setTableProperties(); populateAndConfig(false); }
From source file:com.hack23.cia.web.impl.ui.application.views.common.AbstractView.java
License:Apache License
/** * Creates the basic layout with panel and footer. * * @param panelName//from www . j av a 2 s . c o m * the panel name */ protected final void createBasicLayoutWithPanelAndFooter(final String panelName) { final VerticalLayout layout = new VerticalLayout(); layout.setMargin(true); layout.setSpacing(true); layout.setWidth(100, Unit.PERCENTAGE); layout.setHeight(100, Unit.PERCENTAGE); final VerticalLayout pageModeContent = new VerticalLayout(); pageModeContent.setMargin(true); pageModeContent.setSpacing(true); pageModeContent.setWidth(100, Unit.PERCENTAGE); pageModeContent.setHeight(100, Unit.PERCENTAGE); layout.addComponent(pageModeContent); final ThemeResource ciaLogoResource = new ThemeResource("cia-logo.png"); final Image ciaLogoImage = new Image(null, ciaLogoResource); final HorizontalLayout topHeader = new HorizontalLayout(); topHeader.addComponent(ciaLogoImage); ciaLogoImage.setWidth("75px"); ciaLogoImage.setHeight("75px"); topHeader.setComponentAlignment(ciaLogoImage, Alignment.MIDDLE_LEFT); topHeader.setExpandRatio(ciaLogoImage, ContentRatio.SMALL); final HorizontalLayout topTitleHeadertPanel = new HorizontalLayout(); final Label titleLabel = new Label("Citizen Intelligence Agency"); titleLabel.setStyleName("Header"); topTitleHeadertPanel.addComponent(titleLabel); topTitleHeadertPanel.setComponentAlignment(titleLabel, Alignment.MIDDLE_LEFT); final Label sloganLabel = new Label("// Tracking politicians like bugs!"); sloganLabel.setStyleName("HeaderSlogan"); topTitleHeadertPanel.addComponent(sloganLabel); topTitleHeadertPanel.setComponentAlignment(sloganLabel, Alignment.MIDDLE_RIGHT); topHeader.addComponent(topTitleHeadertPanel); topHeader.setComponentAlignment(topTitleHeadertPanel, Alignment.MIDDLE_LEFT); topHeader.setExpandRatio(topTitleHeadertPanel, ContentRatio.GRID); topHeaderRightPanel.removeAllComponents(); topHeader.addComponent(topHeaderRightPanel); topHeader.setComponentAlignment(topHeaderRightPanel, Alignment.MIDDLE_RIGHT); topHeader.setExpandRatio(topHeaderRightPanel, ContentRatio.LARGE); if (UserContextUtil.allowRoleInSecurityContext(ROLE_ADMIN) || UserContextUtil.allowRoleInSecurityContext(ROLE_USER)) { final Link userHomePageLink = pageLinkFactory.createUserHomeViewPageLink(); topHeaderRightPanel.addComponent(userHomePageLink); topHeaderRightPanel.setComponentAlignment(userHomePageLink, Alignment.MIDDLE_RIGHT); final Button logoutButton = new Button(LOGOUT, FontAwesome.SIGN_OUT); final LogoutRequest logoutRequest = new LogoutRequest(); logoutRequest.setSessionId(RequestContextHolder.currentRequestAttributes().getSessionId()); logoutButton.addClickListener(new LogoutClickListener(logoutRequest, applicationManager)); topHeaderRightPanel.addComponent(logoutButton); topHeaderRightPanel.setComponentAlignment(logoutButton, Alignment.MIDDLE_RIGHT); } else { final Link createRegisterPageLink = pageLinkFactory.createRegisterPageLink(); topHeaderRightPanel.addComponent(createRegisterPageLink); topHeaderRightPanel.setComponentAlignment(createRegisterPageLink, Alignment.MIDDLE_RIGHT); final Link createLoginPageLink = pageLinkFactory.createLoginPageLink(); topHeaderRightPanel.addComponent(createLoginPageLink); topHeaderRightPanel.setComponentAlignment(createLoginPageLink, Alignment.MIDDLE_RIGHT); } topHeaderRightPanel.setWidth("100%"); topHeaderRightPanel.setHeight("60px"); topHeader.setWidth("100%"); topHeader.setHeight("60px"); pageModeContent.addComponent(topHeader); pageModeContent.setComponentAlignment(topHeader, Alignment.TOP_CENTER); pageModeContent.addComponent(getBarmenu()); pageModeContent.setComponentAlignment(getBarmenu(), Alignment.TOP_CENTER); panel = new Panel(panelName); panel.setSizeFull(); pageModeContent.addComponent(panel); pageModeContent.setExpandRatio(panel, ContentRatio.FULL_SIZE); pageModeContent.addComponent(pageLinkFactory.createMainViewPageLink()); setContent(layout); setWidth(100, Unit.PERCENTAGE); setHeight(100, Unit.PERCENTAGE); setSizeFull(); }
From source file:com.invient.vaadin.InvientChartsDemoWin.java
License:Apache License
public InvientChartsDemoWin() { VerticalLayout mainLayout = new VerticalLayout(); setContent(mainLayout);/*from w w w.jav a2 s . com*/ setSizeFull(); mainLayout.setSizeFull(); setCaption("Invient Charts"); HorizontalLayout infoBar = new HorizontalLayout(); mainLayout.addComponent(infoBar); infoBar.setHeight("50px"); infoBar.setWidth("100%"); Label lblAppTitle = new Label("Demo Gallery for Invient Charts"); lblAppTitle.setSizeFull(); lblAppTitle.setStyleName("v-label-app-title"); infoBar.addComponent(lblAppTitle); mainSplit = new HorizontalSplitPanel(); mainSplit.setSizeFull(); mainLayout.addComponent(mainSplit); mainLayout.setExpandRatio(mainSplit, 1); leftLayout = new VerticalLayout(); leftLayout.setSpacing(true); mainSplit.setFirstComponent(leftLayout); rightLayout = new VerticalLayout(); rightLayout.setSpacing(true); rightLayout.setMargin(true); mainSplit.setSecondComponent(rightLayout); mainSplit.setSplitPosition(200, Sizeable.UNITS_PIXELS); navTree = createChartsTree(); leftLayout.addComponent(navTree); eventLog.setReadOnly(true); eventLog.setStyleName("v-textarea-chart-events-log"); eventLog.setSizeFull(); eventLog.setHeight("200px"); setTheme("chartdemo"); }
From source file:com.klwork.explorer.ui.base.AbstractSecondMainPage.java
License:Apache License
protected void addSelectComponent() { VerticalLayout secondMenuLayout = new VerticalLayout(); secondMenuLayout.addStyleName("sidebar"); secondMenuLayout.addStyleName("menu"); //secondMenuLayout.setMargin(new MarginInfo(true,false,false,false)); secondMenuLayout.setSpacing(true);/*from ww w. ja v a 2 s . c o m*/ secondMenuLayout.setSizeFull(); HorizontalLayout tableHeadLayout = new HorizontalLayout(); tableHeadLayout.setStyleName("tableHead"); tableHeadLayout.setHeight("20px"); Label nameLabel = new Label("hello,word"); tableHeadLayout.addComponent(nameLabel); tableHeadLayout.setComponentAlignment(nameLabel, Alignment.BOTTOM_CENTER); secondMenuLayout.addComponent(tableHeadLayout); //secondMenuLayout.setExpandRatio(tableHeadLayout, 0.1f); //table AbstractSelect select = createSelectComponent(); secondMenuLayout.addComponent(select); secondMenuLayout.setExpandRatio(select, 1.0f); if (select != null) { grid.addComponent(secondMenuLayout, 0, 0); } }
From source file:com.logicbomb.newschool.pages.masterpages.PrimaryMasterPage.java
public PrimaryMasterPage() { //ContextWidget c= new ContextWidget(); HorizontalLayout iHorizontalLayout = new HorizontalLayout(); //addComponent(iHorizontalLayout,"top:0px;left:0px"); iHorizontalLayout.setWidth(String.valueOf(Page.getCurrent().getBrowserWindowWidth())); iHorizontalLayout.setHeight(String.valueOf(Page.getCurrent().getBrowserWindowHeight())); iHorizontalLayout.setStyleName("backColorBlack"); //String[] captions1 = {"Logo Here", "My Cool School", "Third"}; //Layout A and its sub components Panel AP = new Panel(); iHorizontalLayout.addComponent(AP);// w w w . j a v a 2s. c o m AP.setSizeFull(); AP.setStyleName("backColorBlack"); VerticalLayout A1 = new VerticalLayout(); AP.setContent(A1); //A.setSizeFull(); A1.setSpacing(true); iHorizontalLayout.setExpandRatio(AP, 1); A1.setStyleName("backColorBlack"); A1.setMargin(new MarginInfo(true, true, true, true)); Button logoImage = new Button(); logoImage.setIcon(FontAwesome.PICTURE_O); logoImage.setWidth("80px"); logoImage.setHeight(logoImage.getWidth(), Unit.PIXELS); //logoImage.setWidth("100px"); A1.addComponent(logoImage); A1.setComponentAlignment(logoImage, Alignment.TOP_CENTER); Label schoolName = new Label("The School Of Future"); schoolName.setStyleName("v-label-big"); A1.addComponent(schoolName); //A.setComponentAlignment(schoolName,Alignment.TOP_CENTER); Label schoolMinorName = new Label("Random Branch"); schoolMinorName.setStyleName("v-label-small"); A1.addComponent(schoolMinorName); VerticalLayout A2 = new VerticalLayout(); A1.addComponent(A2); MainMenuWidget iMainMenuWidget = new MainMenuWidget(); A2.addComponent(iMainMenuWidget); //A.setComponentAlignment(schoolName,Alignment.TOP_CENTER); //Layout B ContextWidgetTop c = new ContextWidgetTop(); c = ContextWidgetTop.ContextWidgetTransformer(c, new UserDetailsWidget(), SliderMode.TOP, SliderPanelStyles.COLOR_RED); VerticalLayout B = new VerticalLayout(); B.setSizeFull(); //B.setSpacing(true); iHorizontalLayout.addComponent(c); c.addComponent(B); iHorizontalLayout.setExpandRatio(c, 7); //Layout B1 and its sub Components HorizontalLayout B1 = new HorizontalLayout(); B.addComponent(B1); //B.setExpandRatio(B1, 1); //B1.setHeight("70px"); B1.setSizeFull(); //B1=ContextWidget.ContextWidgetTransformer(B1, new SliderMasterPage(),SliderMode.RIGHT,SliderPanelStyles.COLOR_RED); HorizontalLayout B11 = new HorizontalLayout(); B1.addComponent(B11); B1.setStyleName("backColorBlack"); B11.setSizeFull(); B1.setHeight("45px"); //B1.setStyleName("backColorWhite"); //B1.setMargin(new MarginInfo(false, true, false, true)); TextField iTextField = new TextField(); iTextField.setWidth("200px"); iTextField.setInputPrompt("Search!"); iTextField.setStyleName("v-text-type-search"); iTextField.focus(); B11.addComponent(iTextField); B11.setComponentAlignment(iTextField, Alignment.MIDDLE_LEFT); //Layout B2 and its Sub Components ContextWidget B2 = new ContextWidget(); B2.setSizeFull(); B.addComponent(B2); B.setExpandRatio(B2, 10); B2 = ContextWidget.ContextWidgetTransformer(B2, new SliderMasterPage(), SliderMode.RIGHT, SliderPanelStyles.COLOR_BLUE); //B2=ContextWidget.ContextWidgetTransformer(B2, new SliderMasterPage(),SliderMode.TOP,SliderPanelStyles.COLOR_RED); VerticalLayout v = new VerticalLayout(); B2.addComponent(v); Button b1111 = new Button( "Put all the inner components like this Put all the inner components like this Put all the inner components like this Put all the inner components like this"); v.addComponent(b1111); Button b1112 = new Button("Put all the inner components like this"); v.addComponent(b1112); /* Panel p = new Panel(); VerticalLayout v= new VerticalLayout(); v.addComponent(new TextField("Name")); v.addComponent(new TextField("Street address")); v.addComponent(new TextField("Postal code")); p.setContent(v); B2.addComponent(p); v.setWidth(String.valueOf(B2.getWidth()*10)+"px"); //v.setSizeFull();// <- This will cause issues. Don't do this p.setSizeFull(); */ //ContextWidget iContextPanel= new ContextWidget(p); //B2.addComponent(iContextPanel); //setPosition(p, iComponentPositionPanel); addComponent(iHorizontalLayout); }
From source file:com.m4gik.views.component.LibraryScreen.java
/** * This method builds library screen. This method overrides an existing * method.// ww w.j a va 2 s .com * * @see com.m4gik.views.component.ViewScreen#build() */ @Override public Layout build() { HorizontalLayout root = new HorizontalLayout(); root.setSizeFull(); root.setCaption("Media Library"); root.setHeight("200%"); root.setWidth("100%"); this.content = new VerticalLayout(); content.setSizeFull(); root.addComponent(content); final GridLayout grid = new GridLayout(4, 1); Panel top = new Panel("Music Collection", grid); top.setSizeFull(); top.addStyleName(Runo.PANEL_LIGHT); grid.setWidth("100%"); grid.setMargin(true); grid.addStyleName(Runo.LAYOUT_DARKER); content.addComponent(top); content.setExpandRatio(top, 1); grid.addLayoutClickListener(new LayoutClickListener() { private static final long serialVersionUID = -1864555729437118182L; @Override public void layoutClick(LayoutClickEvent event) { for (Iterator<Component> it = grid.iterator(); it.hasNext();) { Component c = it.next(); c.removeStyleName(Runo.CSSLAYOUT_SELECTABLE_SELECTED); } if (event.getChildComponent() != null) { event.getChildComponent().addStyleName(Runo.CSSLAYOUT_SELECTABLE_SELECTED); } } }); buildAudioLibrary(grid, null); return root; }
From source file:com.mycollab.module.crm.view.activity.ActivityCalendarViewImpl.java
License:Open Source License
private void initContent() { MHorizontalLayout contentWrapper = new MHorizontalLayout().withSpacing(false).withFullWidth(); this.addComponent(contentWrapper); /* Content cheat */ MVerticalLayout mainContent = new MVerticalLayout().withMargin(new MarginInfo(false, true, true, true)) .withFullWidth().withStyleName("readview-layout"); contentWrapper.with(mainContent).expand(mainContent); MVerticalLayout rightColumn = new MVerticalLayout().withMargin(new MarginInfo(true, false, true, false)) .withWidth("250px"); rightColumn.setDefaultComponentAlignment(Alignment.MIDDLE_CENTER); contentWrapper.addComponent(rightColumn); MHorizontalLayout actionPanel = new MHorizontalLayout().withMargin(new MarginInfo(true, false, true, false)) .withFullWidth().withStyleName(WebThemes.HEADER_VIEW); actionPanel.setDefaultComponentAlignment(Alignment.MIDDLE_LEFT); Component headerText = ComponentUtils.header(CrmTypeConstants.ACTIVITY, "Calendar"); actionPanel.with(headerText).expand(headerText); mainContent.addComponent(actionPanel); dateHdr = new Label(); dateHdr.setSizeUndefined();/*from w ww . j ava2 s . com*/ dateHdr.setStyleName(ValoTheme.LABEL_H3); mainContent.addComponent(this.dateHdr); mainContent.setComponentAlignment(this.dateHdr, Alignment.MIDDLE_CENTER); toggleViewBtn = new PopupButton(UserUIContext.getMessage(DayI18nEnum.OPT_MONTHLY)); toggleViewBtn.setWidth("200px"); toggleViewBtn.addStyleName("calendar-view-switcher"); MVerticalLayout popupLayout = new MVerticalLayout().withMargin(new MarginInfo(false, true, false, true)) .withWidth("190px"); monthViewBtn = new Button(UserUIContext.getMessage(DayI18nEnum.OPT_MONTHLY), clickEvent -> { toggleViewBtn.setPopupVisible(false); toggleViewBtn.setCaption(monthViewBtn.getCaption()); calendarComponent.switchToMonthView(new Date(), true); datePicker.selectDate(new Date()); monthViewBtn.addStyleName("selected-style"); initLabelCaption(); }); monthViewBtn.setStyleName(WebThemes.BUTTON_LINK); popupLayout.addComponent(monthViewBtn); weekViewBtn = new Button(UserUIContext.getMessage(DayI18nEnum.OPT_WEEKLY), clickEvent -> { toggleViewBtn.setPopupVisible(false); toggleViewBtn.setCaption(weekViewBtn.getCaption()); calendarComponent.switchToWeekView(new Date()); datePicker.selectWeek(new Date()); }); weekViewBtn.setStyleName(WebThemes.BUTTON_LINK); popupLayout.addComponent(weekViewBtn); dailyViewBtn = new Button(UserUIContext.getMessage(DayI18nEnum.OPT_DAILY), clickEvent -> { toggleViewBtn.setPopupVisible(false); toggleViewBtn.setCaption(dailyViewBtn.getCaption()); Date currentDate = new Date(); datePicker.selectDate(currentDate); calendarComponent.switchToDateView(currentDate); }); dailyViewBtn.setStyleName(WebThemes.BUTTON_LINK); popupLayout.addComponent(dailyViewBtn); toggleViewBtn.setContent(popupLayout); CssLayout toggleBtnWrap = new CssLayout(); toggleBtnWrap.setStyleName("switcher-wrap"); toggleBtnWrap.addComponent(toggleViewBtn); rightColumn.addComponent(toggleBtnWrap); rightColumn.setComponentAlignment(toggleBtnWrap, Alignment.MIDDLE_CENTER); rightColumn.addComponent(this.datePicker); initLabelCaption(); addCalendarEvent(); actionPanel.addComponent(calendarActionBtn); actionPanel.setComponentAlignment(calendarActionBtn, Alignment.MIDDLE_RIGHT); OptionPopupContent actionBtnLayout = new OptionPopupContent(); Button.ClickListener listener = new Button.ClickListener() { private static final long serialVersionUID = 1L; @Override public void buttonClick(ClickEvent event) { calendarActionBtn.setPopupVisible(false); String caption = event.getButton().getCaption(); if (caption.equals("New Task")) { EventBusFactory.getInstance().post(new ActivityEvent.TaskAdd(this, null)); } else if (caption.equals("New Call")) { EventBusFactory.getInstance().post(new ActivityEvent.CallAdd(this, null)); } else if (caption.equals("New Meeting")) { EventBusFactory.getInstance().post(new ActivityEvent.MeetingAdd(this, null)); } } }; MButton todoBtn = new MButton(UserUIContext.getMessage(TaskI18nEnum.NEW), listener) .withStyleName(WebThemes.BUTTON_LINK).withIcon(CrmAssetsManager.getAsset(CrmTypeConstants.TASK)) .withVisible(UserUIContext.canWrite(RolePermissionCollections.CRM_TASK)); actionBtnLayout.addOption(todoBtn); MButton callBtn = new MButton(UserUIContext.getMessage(MeetingI18nEnum.NEW), listener) .withStyleName(WebThemes.BUTTON_LINK).withIcon(CrmAssetsManager.getAsset(CrmTypeConstants.CALL)) .withVisible(UserUIContext.canWrite(RolePermissionCollections.CRM_CALL)); actionBtnLayout.addOption(callBtn); MButton meetingBtn = new MButton(UserUIContext.getMessage(MeetingI18nEnum.NEW), listener) .withStyleName(WebThemes.BUTTON_LINK).withIcon(CrmAssetsManager.getAsset(CrmTypeConstants.MEETING)) .withVisible(UserUIContext.canWrite(RolePermissionCollections.CRM_MEETING)); actionBtnLayout.addOption(meetingBtn); calendarActionBtn.setContent(actionBtnLayout); ButtonGroup viewSwitcher = new ButtonGroup(); Button calendarViewBtn = new Button("Calendar"); calendarViewBtn.setStyleName("selected"); calendarViewBtn.addStyleName(WebThemes.BUTTON_ACTION); viewSwitcher.addButton(calendarViewBtn); Button activityListBtn = new Button("Activities", event -> { ActivitySearchCriteria criteria = new ActivitySearchCriteria(); criteria.setSaccountid(new NumberSearchField(MyCollabUI.getAccountId())); EventBusFactory.getInstance().post(new ActivityEvent.GotoTodoList(this, null)); }); activityListBtn.addStyleName(WebThemes.BUTTON_ACTION); viewSwitcher.addButton(activityListBtn); actionPanel.addComponent(viewSwitcher); actionPanel.setComponentAlignment(viewSwitcher, Alignment.MIDDLE_RIGHT); calendarComponent = new CalendarDisplay(); mainContent.addComponent(calendarComponent); mainContent.setExpandRatio(calendarComponent, 1); mainContent.setComponentAlignment(calendarComponent, Alignment.MIDDLE_CENTER); HorizontalLayout spacing = new HorizontalLayout(); spacing.setHeight("30px"); mainContent.addComponent(spacing); HorizontalLayout noteInfoLayout = new HorizontalLayout(); noteInfoLayout.setSpacing(true); HorizontalLayout noteWapper = new HorizontalLayout(); noteWapper.setHeight("30px"); Label noteLbl = new Label(UserUIContext.getMessage(GenericI18Enum.OPT_NOTE)); noteWapper.addComponent(noteLbl); noteWapper.setComponentAlignment(noteLbl, Alignment.MIDDLE_CENTER); noteInfoLayout.addComponent(noteWapper); HorizontalLayout completeWapper = new HorizontalLayout(); completeWapper.setWidth("100px"); completeWapper.setHeight("30px"); completeWapper.addStyleName("eventLblcompleted"); Label completeLabel = new Label("Completed"); completeWapper.addComponent(completeLabel); completeWapper.setComponentAlignment(completeLabel, Alignment.MIDDLE_CENTER); noteInfoLayout.addComponent(completeWapper); HorizontalLayout overdueWapper = new HorizontalLayout(); overdueWapper.setWidth("100px"); overdueWapper.setHeight("30px"); overdueWapper.addStyleName("eventLbloverdue"); Label overdueLabel = new Label("Overdue"); overdueWapper.addComponent(overdueLabel); overdueWapper.setComponentAlignment(overdueLabel, Alignment.MIDDLE_CENTER); noteInfoLayout.addComponent(overdueWapper); HorizontalLayout futureWapper = new HorizontalLayout(); futureWapper.setWidth("100px"); futureWapper.setHeight("30px"); futureWapper.addStyleName("eventLblfuture"); Label futureLabel = new Label("Future"); futureWapper.addComponent(futureLabel); futureWapper.setComponentAlignment(futureLabel, Alignment.MIDDLE_CENTER); noteInfoLayout.addComponent(futureWapper); mainContent.addComponent(noteInfoLayout); mainContent.setComponentAlignment(noteInfoLayout, Alignment.MIDDLE_CENTER); }