1

我使用 gwt UIBinder 在我的 ComboBox 中添加了一些项目。

<g:item>--select one--</g:item>
<g:item>Dispute Referral Form</g:item>
<g:item>Dispute Settlement Clause</g:item>
<g:item>Procedures &amp; Rules</g:item>
<g:item>Standard Terms &amp; Conditions</g:item>
<g:item>Taxation Rules</g:item>

但是,如果我刷新浏览器(谷歌浏览器),程序&amp;规则会显示在组合框中,与程序规则相对应

我怎样才能让浏览器只显示'&'而不是&amp;

4

1 回答 1

0

这不是一个解决方案 - 而是一种解决方法。

在 java const 字符串数组中定义并将它们添加到构造函数中的列表框中,initWidget(uiBinder.createAndBindUi(this)); 然后等待 Thomas Broyer提到的 GWT 2.5

顺便说一句,这将允许您分别定义 Id 和值。对于它的价值:-)

于 2012-06-11T22:01:03.460 回答