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 · 222 阅读 · 0 评论 -
GWT - GXT - How to get Radio Button Value ?
Create radioRadio 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 · 100 阅读 · 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 · 121 阅读 · 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 · 99 阅读 · 0 评论