这是我的问题:当我导航到下面显示的视图时,显示面板与网格的距离很远,当我单击显示面板标题时,它会出现“选择边框” - 但是当我刷新浏览器时,一切都在它应该在的位置,当我单击它时,披露面板标题不再被选中。我有一个这样的 ui.xml:
<g:HTMLPanel>
<g:VerticalPanel>
<g:Grid>
<g:row>
<g:customCell>
<g:Button ui:field="editBTN" width="50px"></g:Button>
</g:customCell>
<g:customCell>
<g:Button ui:field="deleteBTN" width="50px"></g:Button>
</g:customCell>
<g:customCell>
<g:Label ui:field="date" width="100px"></g:Label>
</g:customCell>
<g:customCell>
<g:Label ui:field="begin" width="100px"></g:Label>
</g:customCell>
<g:customCell>
<g:Label ui:field="end" width="100px"></g:Label>
</g:customCell>
<g:customCell>
<g:Label ui:field="pause" width="100px"></g:Label>
</g:customCell>
<g:customCell>
<g:Label ui:field="sum" width="100px"></g:Label>
</g:customCell>
<g:customCell>
<g:Label ui:field="tasks" width="100px"></g:Label>
</g:customCell>
</g:row>
</g:Grid>
<g:DisclosurePanel>
<g:header>test</g:header>
</g:DisclosurePanel>
<g:DisclosurePanel>
<g:header>test</g:header>
<g:Grid>
<g:row>
<g:customCell>
<g:TextBox ui:field="fromDATEtbx" width="100px"></g:TextBox>
</g:customCell>
<g:customCell>
<g:TextBox ui:field="toDATEtbx" width="100px"></g:TextBox>
</g:customCell>
</g:row>
</g:Grid>
</g:DisclosurePanel>
</g:VerticalPanel>
</g:HTMLPanel>
这是一个已知的错误/错误吗?