Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You are setting 100% height of the <code>VerticalPanel</code> in the middle of the <code>DockLayout</code>, but you are not setting also the middle cell height to 100%. Try with:</p> <pre><code>dockPanel.setCellHeight(mainPanel, "100%"); </code></pre> <p>Anyway using tables and percentages can lead to subtle problems that often you need to handle on your own. Always ask yourself "100% of what?".</p> <p>Also, quoting the javadoc from <code>DockPanel</code>:</p> <blockquote> <p>This widget has limitations in standards mode that did not exist in quirks mode. The child Widgets contained within a DockPanel cannot be sized using percentages. Setting a child widget's height to 100% will NOT cause the child to fill the available height.</p> <p>If you need to work around these limitations, use DockLayoutPanel instead, but understand that it is not a drop in replacement for this class. It requires standards mode, and is most easily used under a RootLayoutPanel (as opposed to a RootPanel). </p> </blockquote> <p>Using <code>&lt;!DOCTYPE html&gt;</code> sets the page in standard mode, meaning this will not going to work properly, and in quirks mode you have to experiment on your own.</p> <p>Try also to consider using a <code>Layout</code>-based approach, as suggested by the javadoc. Since you are using a single div for the whole page (that <code>rootContainer</code>), it should be painless to use. See <a href="https://developers.google.com/web-toolkit/doc/latest/DevGuideUiPanels#LayoutPanels" rel="nofollow">https://developers.google.com/web-toolkit/doc/latest/DevGuideUiPanels#LayoutPanels</a>.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload