git.ithinksw.org
/
extjs.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Upgrade to ExtJS 3.3.1 - Released 11/30/2010
[extjs.git]
/
examples
/
form
/
form-grid.js
diff --git
a/examples/form/form-grid.js
b/examples/form/form-grid.js
index
3ae2be2
..
08cad6d
100644
(file)
--- 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(){
*/
Ext.onReady(function(){
@@
-176,17
+176,19
@@
Ext.onReady(function(){
xtype: 'radiogroup',
columns: 'auto',
fieldLabel: 'Rating',
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: [{
// 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'
}, {
boxLabel: 'A'
}, {
- inputValue: '1',
+ name: 'rating',
+ inputValue: 1,
boxLabel: 'B'
}, {
boxLabel: 'B'
}, {
- inputValue: '2',
+ name: 'rating',
+ inputValue: 2,
boxLabel: 'C'
}]
}]
boxLabel: 'C'
}]
}]