Package com.smartgwt.client.widgets.grid

Examples of com.smartgwt.client.widgets.grid.GroupValueFunction


            ArrayList<ListGridField> fields = new ArrayList<ListGridField>();

            ListGridField metricNameField = new ListGridField(FIELD_METRIC_NAME, MSG.common_title_name());
            metricNameField.setHidden(true);

            metricNameField.setGroupValueFunction(new GroupValueFunction() {
                public Object getGroupValue(Object value, ListGridRecord record, ListGridField field, String fieldName,
                    ListGrid grid) {
                    // just create a group for each metric display name
                    return value;
                }
View Full Code Here

TOP

Related Classes of com.smartgwt.client.widgets.grid.GroupValueFunction

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.