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
0d6aaf3
..
08cad6d
100644
(file)
--- a/
examples/form/form-grid.js
+++ b/
examples/form/form-grid.js
@@
-1,8
+1,8
@@
/*!
/*!
- * Ext JS Library 3.
0.0
- * Copyright(c) 2006-20
09 Ext JS, LLC
- * licensing@
extjs
.com
- * http://www.
extjs
.com/license
+ * Ext JS Library 3.
3.1
+ * Copyright(c) 2006-20
10 Sencha Inc.
+ * licensing@
sencha
.com
+ * http://www.
sencha
.com/license
*/
Ext.onReady(function(){
*/
Ext.onReady(function(){
@@
-140,10
+140,9
@@
Ext.onReady(function(){
title:'Company Data',
border: true,
listeners: {
title:'Company Data',
border: true,
listeners: {
-
render
: function(g) {
+
viewready
: function(g) {
g.getSelectionModel().selectRow(0);
g.getSelectionModel().selectRow(0);
- },
- delay: 10 // Allow rows to be rendered.
+ } // Allow rows to be rendered.
}
}
},{
}
}
},{
@@
-174,55
+173,26
@@
Ext.onReady(function(){
fieldLabel: 'Last Updated',
name: 'lastChange'
}, {
fieldLabel: 'Last Updated',
name: 'lastChange'
}, {
- xtype: 'panel',
- layout: 'table',
- layoutConfig: {
- columns: 4
- },
- anchor: '100%',
- defaults: {
- border: false,
- layout: 'form',
- labelWidth: 15,
- style: {
- paddingRight: '10px'
- }
- },
-
+ xtype: 'radiogroup',
+ columns: 'auto',
+ fieldLabel: '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: [{
- cellCls: 'x-form-item',
- xtype: 'label',
- text: 'Rating',
- width: 98
+ name: 'rating',
+ inputValue: 0,
+ boxLabel: 'A'
}, {
}, {
- items: {
- xtype: 'radio',
- name: 'rating',
- inputValue: '0',
- fieldLabel: 'A'
- }
+ name: 'rating',
+ inputValue: 1,
+ boxLabel: 'B'
}, {
}, {
- items: {
- xtype: 'radio',
- name: 'rating',
- inputValue: '1',
- fieldLabel: 'B'
- }
- }, {
- items: {
- xtype: 'radio',
- name: 'rating',
- inputValue: '2',
- fieldLabel: 'C'
- }
+ name: 'rating',
+ inputValue: 2,
+ boxLabel: 'C'
}]
}]
}],
renderTo: bd
});
}]
}]
}],
renderTo: bd
});
-
- // Create Panel view code. Ignore.
- createCodePanel('form-grid.js', 'View code to create this Form');
});
\ No newline at end of file
});
\ No newline at end of file