Hi All

How can I do this:

public class Grid extends com.google.gwt.user.client.ui.Grid
{
        public Grid(int rows, int columns)
        {
                super(rows, columns);
                
                for(int x = 0; x < columns; ++x)
                {
                        for(int y = 0; y < rows; ++y)
                        {
                                
this.getCellFormatter().setAlignment(y,x,HasAlignment.ALIGN_LEFT,
HasAlignment.ALIGN_TOP);
                        }
                }
        }
}

in CSS? All I want to do is specify that all cells have a left
justified horizontal alignment and a top justified vertical alignment.

Thanks!

-- 
Thanks
Paul

Paul Grenyer
e: [email protected]
b: paulgrenyer.blogspot.com

--

You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.


Reply via email to