2011-04-23 16:45:50 +00:00
|
|
|
// vim: et:ts=4:sw=4:sts=4:ft=js
|
2011-04-22 22:03:10 +00:00
|
|
|
Ox.ListItem = function(options, self) {
|
|
|
|
|
|
|
|
var self = self || {},
|
|
|
|
that = new Ox.Element({}, self)
|
|
|
|
.defaults({
|
|
|
|
construct: function() {},
|
|
|
|
data: {},
|
|
|
|
draggable: false,
|
|
|
|
position: 0,
|
|
|
|
unique: ''
|
|
|
|
})
|
|
|
|
.options(options || {});
|
|
|
|
|
|
|
|
constructItem();
|
|
|
|
|
|
|
|
function constructItem(update) {
|
|
|
|
var $element = self.options.construct(self.options.data)
|
|
|
|
.addClass('OxItem')
|
|
|
|
.attr({
|
|
|
|
draggable: self.options.draggable
|
|
|
|
})
|
|
|
|
.data({
|
|
|
|
id: self.options.data[self.options.unique],
|
|
|
|
position: self.options.position
|
|
|
|
});
|
|
|
|
if (update) {
|
|
|
|
that.$element.hasClass('OxSelected') && $element.addClass('OxSelected');
|
|
|
|
that.$element.replaceWith($element);
|
|
|
|
}
|
|
|
|
that.$element = $element;
|
|
|
|
}
|
|
|
|
|
2011-04-29 12:40:51 +00:00
|
|
|
self.setOption = function(key, value) {
|
2011-04-22 22:03:10 +00:00
|
|
|
if (key == 'data') {
|
|
|
|
constructItem(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return that;
|
|
|
|
|
|
|
|
};
|