X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/2e847cf21b8ab9d15fa167b315ca5b2fa92638fc..0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6:/examples/form/form-grid.js diff --git a/examples/form/form-grid.js b/examples/form/form-grid.js index 3ae2be26..08cad6dc 100644 --- a/examples/form/form-grid.js +++ b/examples/form/form-grid.js @@ -1,8 +1,8 @@ /*! - * Ext JS Library 3.1.1 - * Copyright(c) 2006-2010 Ext JS, LLC - * licensing@extjs.com - * http://www.extjs.com/license + * Ext JS Library 3.3.1 + * Copyright(c) 2006-2010 Sencha Inc. + * licensing@sencha.com + * http://www.sencha.com/license */ Ext.onReady(function(){ @@ -176,17 +176,19 @@ Ext.onReady(function(){ xtype: 'radiogroup', columns: 'auto', fieldLabel: 'Rating', - name: 'rating', // A radio group: A setValue on any of the following 'radio' inputs using the numeric // 'rating' field checks the radio instance which has the matching inputValue. items: [{ - inputValue: '0', + name: 'rating', + inputValue: 0, boxLabel: 'A' }, { - inputValue: '1', + name: 'rating', + inputValue: 1, boxLabel: 'B' }, { - inputValue: '2', + name: 'rating', + inputValue: 2, boxLabel: 'C' }] }]