made radio button binding work with javascript on

This commit is contained in:
Keith Donald
2008-05-15 02:11:36 +00:00
parent 2ec6437c3b
commit 479bc23dd8

View File

@@ -81,11 +81,13 @@
Spring.addDecoration(new Spring.ElementDecoration({
elementId : 'smoking',
widgetType : "dijit.form.RadioButton",
widgetModule : "dijit.form.CheckBox" }));
widgetModule : "dijit.form.CheckBox",
widgetAttrs : { value : true }));
Spring.addDecoration(new Spring.ElementDecoration({
elementId : 'non-smoking',
widgetType : "dijit.form.RadioButton",
widgetModule : "dijit.form.CheckBox" }));
widgetModule : "dijit.form.CheckBox",
widgetAttrs : { value : false }));
</script>
</div>