Boolean checkbox type of input
LSD.Widget.Input.Checkbox = new Class({
Extends: LSD.Widget.Paint,
options: {
tag: 'input',
shortcuts: {
space: 'toggle'
},
command: {
type: 'checkbox'
},
events: {
enabled: {
element: {
click: 'click'
}
}
},
writable: true
}
});