oxjs/source/Ox.UI/js/Form/Label.js

54 lines
1.4 KiB
JavaScript
Raw Normal View History

2011-11-05 16:46:53 +00:00
'use strict';
2012-05-21 10:38:18 +00:00
2011-05-16 08:24:46 +00:00
/*@
2012-05-31 10:32:54 +00:00
Ox.Label <f> Label element
([options[, self]]) -> <o:Ox.Element> Label element
2011-05-16 08:24:46 +00:00
options <o> Options object
@*/
2011-04-22 22:03:10 +00:00
Ox.Label = function(options, self) {
self = self || {};
var that = Ox.Element({}, self)
2012-05-28 19:35:41 +00:00
.defaults({
disabled: false,
id: '',
overlap: 'none',
textAlign: 'left',
style: 'rounded',
title: '',
width: 'auto'
})
.options(options || {})
.update({
title: function() {
that.html(self.options.title);
},
width: function() {
that.css({
width: self.options.width - (
self.options.style == 'rounded' ? 14 : 8
) + 'px'
});
}
})
.addClass(
'OxLabel Ox' + Ox.toTitleCase(self.options.style)
+ (self.options.disabled ? ' OxDisabled' : '')
+ (
self.options.overlap != 'none'
? ' OxOverlap' + Ox.toTitleCase(self.options.overlap) : ''
2011-04-22 22:03:10 +00:00
)
2012-05-28 19:35:41 +00:00
)
.css(Ox.extend(self.options.width == 'auto' ? {} : {
width: self.options.width - (
self.options.style == 'rounded' ? 14 : 8
) + 'px'
}, {
textAlign: self.options.textAlign
}))
.html(self.options.title);
2011-04-22 22:03:10 +00:00
return that;
};