adding functionality for textlist
This commit is contained in:
parent
15b743170f
commit
e5cb2e5bf3
4 changed files with 61 additions and 42 deletions
|
@ -208,7 +208,7 @@ Lists
|
||||||
|
|
||||||
|
|
||||||
.OxThemeClassic .OxTextList .OxItem .OxCell {
|
.OxThemeClassic .OxTextList .OxItem .OxCell {
|
||||||
border-right: 1px solid rgb(224, 224, 224);
|
border-right-color: rgb(224, 224, 224);
|
||||||
}
|
}
|
||||||
.OxThemeClassic .OxTextList .OxItem:nth-child(odd) {
|
.OxThemeClassic .OxTextList .OxItem:nth-child(odd) {
|
||||||
background: rgb(242, 242, 242);
|
background: rgb(242, 242, 242);
|
||||||
|
|
|
@ -859,7 +859,7 @@ Lists
|
||||||
float: left;
|
float: left;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
top: 16px;
|
top: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
|
@ -874,11 +874,16 @@ Lists
|
||||||
.OxTextList .OxBody .OxItem .OxCell {
|
.OxTextList .OxBody .OxItem .OxCell {
|
||||||
float: left;
|
float: left;
|
||||||
height: 14px;
|
height: 14px;
|
||||||
padding: 2px 4px 0 4px;
|
padding: 1px 4px 1px 4px;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
.OxTextList .OxBody .OxItem .OxCell > img {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
margin: -1px 0 0 -4px;
|
||||||
|
}
|
||||||
.OxTextList .OxBody .OxItem .OxSpace {
|
.OxTextList .OxBody .OxItem .OxSpace {
|
||||||
float: left;
|
float: left;
|
||||||
width: 4px;
|
width: 4px;
|
||||||
|
|
|
@ -186,7 +186,7 @@ Lists
|
||||||
|
|
||||||
|
|
||||||
.OxThemeModern .OxTextList .OxItem .OxCell {
|
.OxThemeModern .OxTextList .OxItem .OxCell {
|
||||||
border-right: 1px solid rgb(32, 32, 32);
|
border-right-color: rgb(32, 32, 32);
|
||||||
}
|
}
|
||||||
.OxThemeModern .OxTextList .OxItem:nth-child(odd) {
|
.OxThemeModern .OxTextList .OxItem:nth-child(odd) {
|
||||||
background: rgb(14, 14, 14);
|
background: rgb(14, 14, 14);
|
||||||
|
|
|
@ -6512,10 +6512,13 @@ requires
|
||||||
Ox.print('---- self.$pages', self.$pages)
|
Ox.print('---- self.$pages', self.$pages)
|
||||||
++counter == 2 && !Ox.isUndefined(callback) && callback();
|
++counter == 2 && !Ox.isUndefined(callback) && callback();
|
||||||
};
|
};
|
||||||
|
// fixme: find out which option is better
|
||||||
loadPage(page, function() {
|
loadPage(page, function() {
|
||||||
|
//loadPage(page - 1, fn);
|
||||||
|
//loadPage(page + 1, fn);
|
||||||
|
});
|
||||||
loadPage(page - 1, fn);
|
loadPage(page - 1, fn);
|
||||||
loadPage(page + 1, fn);
|
loadPage(page + 1, fn);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function mousedown(e) {
|
function mousedown(e) {
|
||||||
|
@ -6529,10 +6532,10 @@ requires
|
||||||
if (!self.clickTimeout) {
|
if (!self.clickTimeout) {
|
||||||
// click
|
// click
|
||||||
pos = $item.data('position');
|
pos = $item.data('position');
|
||||||
if (e.metaKey && self.options.max == -1) {
|
if (e.metaKey) {
|
||||||
if (!isSelected(pos)) {
|
if (!isSelected(pos) && self.options.max == -1) {
|
||||||
addToSelection(pos);
|
addToSelection(pos);
|
||||||
} else {
|
} else if (self.options.min == 0) {
|
||||||
deselectTimeout = true;
|
deselectTimeout = true;
|
||||||
}
|
}
|
||||||
} else if (e.shiftKey && self.options.max == -1) {
|
} else if (e.shiftKey && self.options.max == -1) {
|
||||||
|
@ -6937,17 +6940,20 @@ requires
|
||||||
})
|
})
|
||||||
.options(options || {});
|
.options(options || {});
|
||||||
|
|
||||||
$.each(self.options.data, function(k, v) {
|
// make a clone, so we don't format cached data
|
||||||
|
self.data = $.extend({}, self.options.data);
|
||||||
|
|
||||||
|
$.each(self.data, function(k, v) {
|
||||||
var format = self.options.format[k];
|
var format = self.options.format[k];
|
||||||
if (Ox.isArray(v)) {
|
if (Ox.isArray(v)) {
|
||||||
self.options.data[k] = v.join(', ');
|
self.data[k] = v.join(', ');
|
||||||
} else if (format) {
|
} else if (format) {
|
||||||
self.options.data[k] = Ox['format' + Ox.toTitleCase(format.type)]
|
self.data[k] = Ox['format' + Ox.toTitleCase(format.type)]
|
||||||
.apply(this, $.merge([v], format.args));
|
.apply(this, $.merge([v], format.args));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
that.$element = self.options.construct(self.options.data)
|
that.$element = self.options.construct(self.data)
|
||||||
.addClass('OxItem')
|
.addClass('OxItem')
|
||||||
.attr({
|
.attr({
|
||||||
id: self.options.id
|
id: self.options.id
|
||||||
|
@ -6974,6 +6980,7 @@ requires
|
||||||
columnsMovable: false,
|
columnsMovable: false,
|
||||||
columnsRemovable: false,
|
columnsRemovable: false,
|
||||||
columnsResizable: false,
|
columnsResizable: false,
|
||||||
|
columnsVisible: false,
|
||||||
columnWidth: [40, 800],
|
columnWidth: [40, 800],
|
||||||
format: [],
|
format: [],
|
||||||
id: '',
|
id: '',
|
||||||
|
@ -7018,6 +7025,7 @@ requires
|
||||||
|
|
||||||
// Head
|
// Head
|
||||||
|
|
||||||
|
if (self.options.columnsVisible) {
|
||||||
that.$bar = new Ox.Bar({
|
that.$bar = new Ox.Bar({
|
||||||
orientation: 'horizontal',
|
orientation: 'horizontal',
|
||||||
size: 16
|
size: 16
|
||||||
|
@ -7045,6 +7053,7 @@ requires
|
||||||
.bindEvent('change', changeColumns)
|
.bindEvent('change', changeColumns)
|
||||||
.appendTo(that.$bar.$element);
|
.appendTo(that.$bar.$element);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Body
|
// Body
|
||||||
|
|
||||||
|
@ -7067,11 +7076,15 @@ requires
|
||||||
unique: self.unique
|
unique: self.unique
|
||||||
}, $.extend({}, self)) // pass event handler
|
}, $.extend({}, self)) // pass event handler
|
||||||
.addClass('OxBody')
|
.addClass('OxBody')
|
||||||
|
.css({
|
||||||
|
top: (self.options.columnsVisible ? 16 : 0) + 'px',
|
||||||
|
overflowY: (self.options.columnsVisible ? 'scroll' : 'auto')
|
||||||
|
})
|
||||||
.scroll(function() {
|
.scroll(function() {
|
||||||
var scrollLeft = $(this).scrollLeft();
|
var scrollLeft = $(this).scrollLeft();
|
||||||
if (scrollLeft != self.scrollLeft) {
|
if (scrollLeft != self.scrollLeft) {
|
||||||
self.scrollLeft = scrollLeft;
|
self.scrollLeft = scrollLeft;
|
||||||
that.$head.scrollLeft(scrollLeft);
|
that.$head && that.$head.scrollLeft(scrollLeft);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
|
@ -7234,10 +7247,11 @@ requires
|
||||||
var $cell = $('<div>')
|
var $cell = $('<div>')
|
||||||
.addClass('OxCell OxColumn' + Ox.toTitleCase(v.id))
|
.addClass('OxCell OxColumn' + Ox.toTitleCase(v.id))
|
||||||
.css({
|
.css({
|
||||||
width: (self.columnWidths[i] - 9) + 'px',
|
width: (self.columnWidths[i] - (self.options.columnsVisible ? 9 : 8)) + 'px',
|
||||||
|
borderRightWidth: (self.options.columnsVisible ? 1 : 0) + 'px',
|
||||||
textAlign: v.align
|
textAlign: v.align
|
||||||
})
|
})
|
||||||
.html(!$.isEmptyObject(data) && data[v.id] ? data[v.id] : '')
|
.html(v.id in data ? data[v.id] : '')
|
||||||
.appendTo($item);
|
.appendTo($item);
|
||||||
});
|
});
|
||||||
return $item;
|
return $item;
|
||||||
|
|
Loading…
Reference in a new issue