저는 ExtJS를 처음 접했고 일반적으로 자바 스크립트 기술이 거의 없습니다. 나는 ExtJS4를 배우기 위해 약간의 임무를 겪을 것이다. 그러나 이것은 나 자신을 잊어 버리고있다. 토글 버튼을 토글 할 때 청취자에게 체크 박스를 체크 표시하려고합니다. 아무리 코드를 작성하는 방법, 나는 방화범이 끌려에서 비슷한 오류를 얻을 : 내가 잘못을하고 어떻게를 해결하는 무슨을에버튼에서 토글 이벤트를 수신하기위한 체크 박스를 얻으려고 시도합니다.
missing : after property id
togglebtn.toggle: function(tog, true){
어떤 생각? 이벤트에 대한
감사합니다 ...
var togglebtn = Ext.create('Ext.button.Button', {
enableToggle: true
, text: 'Checked'
});
var mychkbxgrp = Ext.create('Ext.form.CheckboxGroup', {
columns: 3
, alias: 'mycheckboxgroup'
, items:[{
boxLabel: 'Item1'
, name: 'rb'
, inputValue: '1'
, listeners:{
togglebtn.toggle: function(tog, true){
setValue: true
}
}
},{
boxLabel: 'Item2', name: 'rb', inputValue: '2'
},{
boxLabel: 'Item3', name: 'rb', inputValue: '3'
}]
});
Ext.create('Ext.toolbar.Toolbar', {
renderTo: document.body
, width: 600
, height: 40
, items:[{
xtype: 'form'
, height: 30
, width: 180
, bodyPadding: 4
, items:[
mychkbxgrp
]
}
, togglebtn
]
});