Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.temp.foundation.client.util;

import com.google.gwt.user.client.ui.*;
import com.google.gwt.user.client.ui.HTMLTable.*;
import com.google.gwt.user.client.ui.HasHorizontalAlignment.*;
import com.google.gwt.user.client.ui.HasVerticalAlignment.*;

public class GridUtils {

    public static void setAllCellsAlignment( Grid grid, VerticalAlignmentConstant alignment ) {
        CellFormatter formatter = grid.getCellFormatter();
        for ( int row = 0; row < grid.getRowCount(); row++ ) {
            int cells = grid.getCellCount( row );
            for ( int cell = 0; cell < cells; cell++ ) {
                formatter.setVerticalAlignment( row, cell, alignment );
            }
        }
    }

    public static void setAllCellsAlignment( Grid grid, HorizontalAlignmentConstant alignment ) {
        CellFormatter formatter = grid.getCellFormatter();
        for ( int row = 0; row < grid.getRowCount(); row++ ) {
            int cells = grid.getCellCount( row );
            for ( int cell = 0; cell < cells; cell++ ) {
                formatter.setHorizontalAlignment( row, cell, alignment );
            }
        }
    }
}

Commits for litesoft/trunk/GWT_Sandbox/FormEngine/src/com/temp/foundation/client/util/GridUtils.java

Diff revisions: vs.
Revision Author Commited Message
965 GeorgeS picture GeorgeS Fri 01 Aug, 2014 03:20:35 +0000

!