Ext checkboxfiled 가져오기 값이 on인 해결 방법

2458 단어 checkbox
오늘 Ext checkboxfield를 on으로 하고 있습니다. true 또는false일 것입니다. 해결 방법은Name을 지우고 ID만 설정하면 됩니다.
 1             {

 2                            xtype: "container",

 3                            layout: "hbox",

 4                            defaultType: "textfield",

 5                            margin: "5 15 5 15",

 6                            style: 'text-align:right',

 7                            items: [

 8                                 {

 9                                     xtype: "checkboxfield",

10                                     //name: "Enabled",

11                                     id: 'Enabled',// ID 

12                                     fieldLabel: " ",

13                                     boxLabel: "",

14                                     checked:true,

15                                     labelAlign: "right",

16                                     flex: 0.5

17                                 }]

18                      }

좋은 웹페이지 즐겨찾기