0

在 HTML 编辑器中键入文本时,我需要选中该复选框。当我单击 HTML 编辑器工具栏上的源代码编辑按钮时,以下代码可以正常工作。禁用所有按钮后,复选框被选中。任何人都可以更正代码吗?

这是extjs代码:

this.mcmServiceIndicatorsOthCheckbox = new Ext.form.field.Checkbox({ fieldLabel: '', id: 'otherbox', boxLabel: 'OTH (must complete comments)' });

this.mcmServiceIndicatorsCommentsHtmlEditor = new Ext.form.HtmlEditor({
            height: 50,
            style: 'background-color: white;',
            enableSourceEdit : true,
            anchor: '100%',             
                listeners: {
                    afterrender: function(){
                      this.textareaEl.on('keyup', function() {
                         var notes = this.getValue(); 
                          if(notes.length > 0)
                          {
                              Ext.getCmp('otherbox').setValue(true);
                          }
                          else
                          {
                              Ext.getCmp('otherbox').setValue(false);
                          } 
                      });              
                    }
                }
        });
4

1 回答 1

0

只需为事件添加另一个事件处理程序change

change: function () {
    Ext.getCmp('otherbox').setValue(this.getValue().length > 0);
}

工作样本:http: //jsfiddle.net/Ld9Dj/1/

于 2013-11-07T21:13:23.267 回答