SWF-960 Booking MVC Reference Application: Decorated RadioButton components do not bind "on" selected value

This commit is contained in:
Scott Andrews
2008-11-26 19:38:57 +00:00
parent 68ca9913cc
commit 1ac099b945

View File

@@ -81,11 +81,15 @@
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>
</div>