X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/src/form/field/Radio.js?ds=sidebyside diff --git a/src/form/field/Radio.js b/src/form/field/Radio.js index 82f6b34d..232d244a 100644 --- a/src/form/field/Radio.js +++ b/src/form/field/Radio.js @@ -95,19 +95,19 @@ __Example usage:__ var radio1 = Ext.getCmp('radio1'), radio2 = Ext.getCmp('radio2'), radio3 = Ext.getCmp('radio3'); - + //if L is selected, change to M if (radio2.getValue()) { radio1.setValue(true); return; } - + //if XL is selected, change to L if (radio3.getValue()) { radio2.setValue(true); return; } - + //if nothing is set, set size to S radio1.setValue(true); } @@ -118,19 +118,19 @@ __Example usage:__ var radio1 = Ext.getCmp('radio1'), radio2 = Ext.getCmp('radio2'), radio3 = Ext.getCmp('radio3'); - + //if M is selected, change to L if (radio1.getValue()) { radio2.setValue(true); return; } - + //if L is selected, change to XL if (radio2.getValue()) { radio3.setValue(true); return; } - + //if nothing is set, set size to XL radio3.setValue(true); } @@ -240,6 +240,10 @@ Ext.define('Ext.form.field.Radio', { return this.checked ? this.inputValue : null; }, + getModelData: function() { + return this.getSubmitData(); + }, + // inherit docs onChange: function(newVal, oldVal) { var me = this;