我从设计师那里得到了html。 那里有2个单选按钮。
我喜欢从GWT获取单选按钮的数据。 我需要radioButton的参考。
RadioButton rb = RadioButton.wrap(Dom.getElementById("abc"));
但错误。
我该如何解决这个问题
答案 0 :(得分:0)
RadioButton
没有名为wrap()
的方法 - 请参阅docs for RadioButton。
您可以尝试SimpleRadioButton
,其中包含wrap()
- docs。