Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / source / widgets / form / RadioGroup.js
diff --git a/source/widgets/form/RadioGroup.js b/source/widgets/form/RadioGroup.js
deleted file mode 100644 (file)
index 6ae7756..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/*\r
- * Ext JS Library 2.2.1\r
- * Copyright(c) 2006-2009, Ext JS, LLC.\r
- * licensing@extjs.com\r
- * \r
- * http://extjs.com/license\r
- */\r
-\r
-/**\r
- * @class Ext.form.RadioGroup\r
- * @extends Ext.form.CheckboxGroup\r
- * A grouping container for {@link Ext.form.Radio} controls.\r
- * @constructor\r
- * Creates a new RadioGroup\r
- * @param {Object} config Configuration options\r
- */\r
-Ext.form.RadioGroup = Ext.extend(Ext.form.CheckboxGroup, {\r
-    /**\r
-     * @cfg {Boolean} allowBlank True to allow every item in the group to be blank (defaults to false). If allowBlank = \r
-     * false and no items are selected at validation time, {@link @blankText} will be used as the error text.\r
-     */\r
-    allowBlank : true,\r
-    /**\r
-     * @cfg {String} blankText Error text to display if the {@link #allowBlank} validation fails (defaults to "You must \r
-     * select one item in this group")\r
-     */\r
-    blankText : "You must select one item in this group",\r
-    \r
-    // private\r
-    defaultType : 'radio',\r
-    \r
-    // private\r
-    groupCls: 'x-form-radio-group'\r
-});\r
-\r
-Ext.reg('radiogroup', Ext.form.RadioGroup);\r