Package org.libreplan.web.common.components

Examples of org.libreplan.web.common.components.NewDataSortableGrid


        return (Bandbox) ((Hbox) row.getChildren().get(0)).getChildren().get(0);
    }

    private Rows getRequirementRows(Row row) {
        Panel panel = (Panel) row.getFirstChild().getFirstChild();
        NewDataSortableGrid grid = (NewDataSortableGrid) panel.getFirstChild()
                .getFirstChild();
        return grid.getRows();
    }
View Full Code Here


        return grid.getRows();
    }

    private HoursGroupWrapper getHoursGroupOfRequirementWrapper(
            Row rowRequirement) {
        NewDataSortableGrid grid = (NewDataSortableGrid) rowRequirement
                .getParent().getParent();
        Panel panel = (Panel) grid.getParent().getParent();
        return (HoursGroupWrapper) ((Row) panel.getParent().getParent())
                .getValue();
    }
View Full Code Here

        try {
            calendarExceptionTypeModel.confirmDelete(calendarExceptionType);
        } catch (InstanceNotFoundException e) {
            throw new RuntimeException(e);
        } catch (InvalidValueException e) {
            NewDataSortableGrid listExceptionDayTypes = (NewDataSortableGrid) listWindow
                    .getFellowIfAny("listExceptionDayTypes");
            Row row = findRowByValue(listExceptionDayTypes,
                    calendarExceptionType);
            throw new WrongValueException(row, e.getMessage());
        }
View Full Code Here

TOP

Related Classes of org.libreplan.web.common.components.NewDataSortableGrid

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.