
Ext_GWT
iteye_5496
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SimpleComboBox
[code="java"] final SimpleComboBox cascade = new SimpleComboBox(); cascade.setTriggerAction(TriggerAction.ALL); cascade.setEditable(false); cascade.add("Parent"); cascade....原创 2011-05-27 14:09:05 · 237 阅读 · 0 评论 -
GWT - GXT - How to get Radio Button Value ?
Create radio Radio radio = new Radio(); radio.setBoxLabel("Si"); radio.setValue(true);radio.setValueAttribute("true");Radio radio2 = new Radio(); radio2.setBoxLabel("No");radio2.setValueAttribute("...2011-05-30 13:51:00 · 116 阅读 · 0 评论 -
GWT - GXT - How to get Radio Button Value ?
Create radio [code="java"] Radio radio = new Radio(); radio.setBoxLabel("Si"); radio.setValue(true); radio.setValueAttribute("true"); Radio radio2 = new Radio(); radio2.setBoxLa...原创 2011-05-30 13:57:41 · 139 阅读 · 0 评论 -
How to get Value of CheckBox in GXT
[code="java"] CheckBox check1 = new CheckBox(); check1.setBoxLabel("Brochures"); check1.setValueAttribute("Bro"); CheckBox check2 = new CheckBox(); ...原创 2011-05-30 14:00:40 · 116 阅读 · 0 评论