0
<g:Grid>
    <g:row>
        <g:customCell>
            <g:HTMLPanel styleName="{style.loginPrompt}">
                <div>
                    <ui:msg description="LoginPrompt">Please <b>Log In</b></ui:msg> 
               </div>                       
            </g:HTMLPanel>  
        </g:customCell>         
    </g:row> 
...

私のセルテキストがJavaのように2番目のセルになるようにしたい:

Grid g = new Grid(5, 5);
g.setText(0, 1, "asdf");
4

1 に答える 1

4

g:row5 行と 5 列が必要な場合は、適切な数のand g:cell(または)を使用して、UiBinder ですべてを定義する必要があると思いますg:customCell。に相当するものはありませんが、 a (and is equal to )を使用してsetTextと同等のことができます。 setHTMLg:cellg:customCellsetWidget

<g:Grid>
   <g:row>
      <g:customCell><!-- whatever --></g:customCell>
      <g:cell>asdf</g:cell>
<!-- continue here for 5 rows, 5 cells per row -->
于 2012-05-09T10:09:36.153 に答える