2011-11-05 16:46:53 +00:00
|
|
|
'use strict';
|
2012-05-21 10:38:18 +00:00
|
|
|
|
2011-05-16 10:49:48 +00:00
|
|
|
/*@
|
2012-05-31 10:32:54 +00:00
|
|
|
Ox.Checkbox <f> Checkbox Element
|
2011-05-16 10:49:48 +00:00
|
|
|
options <o> Options object
|
|
|
|
disabled <b> if true, checkbox is disabled
|
|
|
|
group <b> if true, checkbox is part of a group
|
2011-10-03 15:02:19 +00:00
|
|
|
label <s> Label (on the left side)
|
|
|
|
labelWidth <n|64> Label width
|
|
|
|
title <s> Title (on the right side)
|
2011-12-21 13:42:47 +00:00
|
|
|
value <b> if true, checkbox is checked
|
2011-05-16 10:49:48 +00:00
|
|
|
width <n> width in px
|
|
|
|
self <o> Shared private variable
|
2012-07-04 11:29:18 +00:00
|
|
|
([options[, self]]) -> <o:Ox.Element> Checkbox Element
|
|
|
|
change <!> triggered when value changes
|
2011-05-16 10:49:48 +00:00
|
|
|
@*/
|
2011-04-22 22:03:10 +00:00
|
|
|
|
2011-05-16 10:49:48 +00:00
|
|
|
Ox.Checkbox = function(options, self) {
|
2011-04-22 22:03:10 +00:00
|
|
|
|
2011-06-19 17:48:32 +00:00
|
|
|
self = self || {};
|
|
|
|
var that = Ox.Element({}, self)
|
2011-04-22 22:03:10 +00:00
|
|
|
.defaults({
|
|
|
|
disabled: false,
|
|
|
|
group: false,
|
2011-10-03 15:02:19 +00:00
|
|
|
label: '',
|
|
|
|
labelWidth: 64,
|
2011-04-22 22:03:10 +00:00
|
|
|
overlap: 'none',
|
|
|
|
title: '',
|
2011-12-21 13:42:47 +00:00
|
|
|
value: false,
|
2012-06-15 09:38:25 +00:00
|
|
|
width: options && (options.label || options.title) ? 'auto' : 16
|
2011-04-22 22:03:10 +00:00
|
|
|
})
|
|
|
|
.options(options || {})
|
2012-05-28 19:35:41 +00:00
|
|
|
.update({
|
|
|
|
disabled: function() {
|
|
|
|
var disabled = self.options.disabled;
|
|
|
|
that.attr({disabled: disabled});
|
|
|
|
self.$button.options({disabled: disabled});
|
|
|
|
self.$title && self.$title.options({disabled: disabled});
|
|
|
|
},
|
|
|
|
title: function() {
|
|
|
|
self.$title.options({title: self.options.title});
|
|
|
|
},
|
|
|
|
value: function() {
|
|
|
|
self.$button.toggle();
|
|
|
|
},
|
|
|
|
width: function() {
|
|
|
|
that.css({width: self.options.width + 'px'});
|
|
|
|
self.$title && self.$title.options({width: getTitleWidth()});
|
|
|
|
}
|
|
|
|
})
|
2011-11-03 15:42:41 +00:00
|
|
|
.addClass('OxCheckbox' + (
|
|
|
|
self.options.overlap == 'none'
|
|
|
|
? '' : ' OxOverlap' + Ox.toTitleCase(self.options.overlap)
|
|
|
|
))
|
2011-10-06 04:42:58 +00:00
|
|
|
.attr({
|
|
|
|
disabled: self.options.disabled
|
|
|
|
});
|
2011-04-22 22:03:10 +00:00
|
|
|
|
|
|
|
if (self.options.title) {
|
|
|
|
self.options.width != 'auto' && that.css({
|
2011-06-04 01:41:47 +00:00
|
|
|
width: self.options.width + 'px'
|
|
|
|
});
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$title = Ox.Label({
|
2011-04-22 22:03:10 +00:00
|
|
|
disabled: self.options.disabled,
|
|
|
|
id: self.options.id + 'Label',
|
|
|
|
overlap: 'left',
|
|
|
|
title: self.options.title,
|
2011-11-02 10:23:15 +00:00
|
|
|
width: getTitleWidth()
|
2011-04-22 22:03:10 +00:00
|
|
|
})
|
2011-10-03 15:02:19 +00:00
|
|
|
.css({float: 'right'})
|
2011-04-22 22:03:10 +00:00
|
|
|
.click(clickTitle)
|
|
|
|
.appendTo(that);
|
|
|
|
}
|
|
|
|
|
2011-10-03 15:02:19 +00:00
|
|
|
if (self.options.label) {
|
|
|
|
self.$label = Ox.Label({
|
|
|
|
overlap: 'right',
|
|
|
|
textAlign: 'right',
|
|
|
|
title: self.options.label,
|
|
|
|
width: self.options.labelWidth
|
|
|
|
})
|
|
|
|
.css({float: 'left'})
|
|
|
|
.appendTo(that);
|
|
|
|
}
|
|
|
|
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$button = Ox.Button({
|
2011-04-22 22:03:10 +00:00
|
|
|
disabled: self.options.disabled,
|
|
|
|
id: self.options.id + 'Button',
|
2011-12-21 13:42:47 +00:00
|
|
|
type: 'image',
|
2011-12-22 05:52:46 +00:00
|
|
|
value: self.options.value ? 'check' : 'none',
|
|
|
|
values: ['none', 'check']
|
2011-04-22 22:03:10 +00:00
|
|
|
})
|
|
|
|
.addClass('OxCheckbox')
|
2011-10-27 11:20:00 +00:00
|
|
|
.bindEvent({
|
2011-12-21 13:42:47 +00:00
|
|
|
change: clickButton
|
2011-10-27 11:20:00 +00:00
|
|
|
})
|
2011-04-22 22:03:10 +00:00
|
|
|
.appendTo(that);
|
|
|
|
|
|
|
|
function clickButton() {
|
2011-12-21 13:42:47 +00:00
|
|
|
self.options.value = !self.options.value;
|
2011-04-22 22:03:10 +00:00
|
|
|
that.triggerEvent('change', {
|
2011-12-21 13:42:47 +00:00
|
|
|
value: self.options.value
|
2011-04-22 22:03:10 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function clickTitle() {
|
|
|
|
!self.options.disabled && self.$button.trigger('click');
|
|
|
|
}
|
|
|
|
|
2011-11-02 10:23:15 +00:00
|
|
|
function getTitleWidth() {
|
|
|
|
return self.options.width - 16
|
|
|
|
- !!self.options.label * self.options.labelWidth;
|
|
|
|
}
|
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
return that;
|
|
|
|
|
|
|
|
};
|