在verticalpanel中设置对齐方式-gwt
我试图在 GWT 中的垂直面板中设置对齐属性,如下所示:
vpanel = new VerticalPanel();
vPanel.setHorizontalAlignment(HasHorizontalAlignment.ALIGN_LEFT);
然后添加子项,这给了我一个如下所示的表格:
<table>
<tbody>
<tr><td align="left"></td></tr>
<tr><td align="left"></td></tr>
</tbody>
</table>
但我想要的是
<table align="left">
<tbody>
<tr><td></td></tr>
</tbody>
</table>
我知道这是一个愚蠢的问题,但我遇到了浏览器兼容性问题,只有HTML 指定修复了所有浏览器上的问题。有什么想法吗?
I am trying to set the align property in vertical panel in GWT like this:
vpanel = new VerticalPanel();
vPanel.setHorizontalAlignment(HasHorizontalAlignment.ALIGN_LEFT);
and then adding children which gives me a table like this:
<table>
<tbody>
<tr><td align="left"></td></tr>
<tr><td align="left"></td></tr>
</tbody>
</table>
But what I want is
<table align="left">
<tbody>
<tr><td></td></tr>
</tbody>
</table>
I know it's a stupid question but I am stuck with browser compatibility issue and only the HTML specified fixes issue on all browsers. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以获取小部件的底层元素并使用
getElement().setAttribute(..)
为其设置属性,例如:You can get the underlying element of a widget and set an attribute to it using
getElement().setAttribute(..)
for instance :