ares-ide
Version:
A browser-based code editor and UI designer for Enyo 2 projects
35 lines (32 loc) • 786 B
JavaScript
/**
A box that shows or hides a check mark when clicked.
The onChange event is fired when it is clicked. Use getValue() to fetch
the checked status.
{kind: "onyx.Checkbox", onchange: "checkboxClicked"}
checkboxClicked: function(inSender) {
if (inSender.getValue()) {
this.log("I've been checked!");
}
}
*/
enyo.kind({
name: "onyx.Checkbox",
classes: "onyx-checkbox",
//* @protected
kind: enyo.Checkbox,
tag: "div",
handlers: {
// prevent double onchange bubble in IE
onclick: ""
},
tap: function(inSender, e) {
if (!this.disabled) {
this.setChecked(!this.getChecked());
this.bubble("onchange");
}
return !this.disabled;
},
dragstart: function() {
// Override enyo.Input dragstart handler, to allow drags to propagate for Checkbox
}
});