Package org.gwtoolbox.widget.client.data

Examples of org.gwtoolbox.widget.client.data.FieldSort


        public void sort(BasicTable table, int column, boolean asc) {
            Column c = columnSpec.getColumn(column);
            if (!(c instanceof FieldColumn)) {
                return;
            }
            FieldSort sort = new FieldSort(((FieldColumn)c).getFieldName(), asc);
            currentSortSpec = new SortSpec().addSort(sort);
            showProgress();
            fetch(true, null);
        }
View Full Code Here

TOP

Related Classes of org.gwtoolbox.widget.client.data.FieldSort

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.