Package org.dspace.app.webui.cris.util.RelationPreferenceUtil

Examples of org.dspace.app.webui.cris.util.RelationPreferenceUtil.Sort


        int numSort = UIUtil.getIntParameter(request, "iSortingCols");
        if (numSort > 0)
        {
            for (int idx = 0; idx < numSort; idx++)
            {
                Sort sort = new Sort();
                // we need to remove 2 because the datatable structure has uuid
                // and relationPreference as first columns
                sort.col = UIUtil.getIntParameter(request, "iSortCol_"+idx)-2;
                sort.asc = "asc".equalsIgnoreCase(request.getParameter("sSortDir_"+idx));
                sorts.add(sort);
View Full Code Here

TOP

Related Classes of org.dspace.app.webui.cris.util.RelationPreferenceUtil.Sort

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.