Package com.igalia.java.zk.components.customdetailrowcomponent

Examples of com.igalia.java.zk.components.customdetailrowcomponent.Detail


        }
    }

    private Grid getHoursGroupDetailsGrid(Component self) {
        try {
            Detail detail = ((Detail) ((Row) self.getParent().getParent())
                    .getFirstChild());
            Panel panel = (Panel) detail.getFirstChild();
            return (Grid) panel.getFirstChild().getFirstChild();
        } catch (Exception e) {
            return null;
        }
    }
View Full Code Here


            messagesForUser.showMessage(Level.ERROR, _(e.getMessage()));
        }
    }

    private void appendDetails(Row row, TaskQualityForm taskQualityForm) {
        Detail details = new Detail();
        details.setParent(row);
        details.appendChild(appendGridItems(row, taskQualityForm));
        details.setOpen(false);
    }
View Full Code Here

        }
        return null;
    }

    private void openDetails(Row row) {
        Detail details = getDetails(row);
        if (details != null) {
            details.setOpen(true);
            details.invalidate();
            assignedTaskQualityForms.invalidate();
        }
    }
View Full Code Here

    public Component createDetail() {
        if (!hasDerivedAllocations()) {
            return currentDetail = new Label();
        }
        Detail result = new Detail();
        createDerivedAllocationsGrid();
        result.appendChild(derivedAllocationsGrid);
        reloadDerivedAllocationsData();
        return currentDetail = result;
    }
View Full Code Here

TOP

Related Classes of com.igalia.java.zk.components.customdetailrowcomponent.Detail

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