adding groups
This commit is contained in:
parent
705016e5a6
commit
5f4cc4e793
3 changed files with 129 additions and 7 deletions
|
|
@ -2598,6 +2598,9 @@ requires
|
|||
}
|
||||
$.each(result.data.items, function(i, v) {
|
||||
var pos = offset + i;
|
||||
if (Ox.isUndefined(v.id)) {
|
||||
v.id = pos;
|
||||
}
|
||||
self.$items[pos] = new Ox.ListItem({
|
||||
construct: self.options.construct,
|
||||
data: v,
|
||||
|
|
@ -2962,10 +2965,11 @@ requires
|
|||
that.$titles[getColumnPositionById(self.options.columns[self.selectedColumn].id)].css({
|
||||
width: (self.options.columns[self.selectedColumn].width - 25) + "px"
|
||||
});
|
||||
that.$select = $("<div>")
|
||||
.addClass("OxSelect")
|
||||
.html(oxui.symbols.select)
|
||||
.appendTo(that.$bar.$element);
|
||||
that.$select = new Ox.Button({
|
||||
style: "symbol",
|
||||
type: "image",
|
||||
value: "select"
|
||||
}).appendTo(that.$bar.$element);
|
||||
|
||||
// Body
|
||||
|
||||
|
|
@ -4083,6 +4087,7 @@ requires
|
|||
length = self.options.elements.length,
|
||||
dimensions = oxui.getDimensions(self.options.orientation),
|
||||
edges = oxui.getEdges(self.options.orientation);
|
||||
Ox.print("dimensions, edges", dimensions, edges)
|
||||
$.each(self.options.elements, function(i, v) {
|
||||
var element = v.element
|
||||
.css({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue