Package org.zkoss.zul.api

Examples of org.zkoss.zul.api.Grid


        super.setSortDescending(new NewObjectDecoratorComparator(c));
    }

    @Override
    public boolean sort(boolean ascending) {
        Grid grid = getGrid();
        if (grid instanceof NewDataSortableGrid) {
            ((NewDataSortableGrid) grid).setSortedColumn(this);
            ((NewDataSortableGrid) grid).setLastSortedColumnAscending(ascending);
        }
        return super.sort(ascending);
View Full Code Here


        return super.sort(ascending);
    }

    @Override
    public void afterCompose() {
        Grid g = getGrid();

        if (g instanceof NewDataSortableGrid) {
            NewDataSortableGrid castedGrid = (NewDataSortableGrid) g;

            // The first registered column is responsible for ordering
View Full Code Here

TOP

Related Classes of org.zkoss.zul.api.Grid

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.