How to disable touch of EditBox

In Cocos JS, I set touchEnabled = false to disable touch of EditBox, how do I do that in Cocos Creator

The crude way would be having a invisible node exactly above your Editbox with blockInputEvents component and setting its active property to true/false according to your requirement.

But What I believe you are searching is this:

    this.editBox.node.off(cc.Node.EventType.TOUCH_END);