1
0
Fork 0
forked from 0x2620/oxjs

in TableLists, use options.unique, not options.columns[i].unique

This commit is contained in:
rolux 2012-06-27 20:38:07 +02:00
commit 55e2174831
5 changed files with 9 additions and 15 deletions

View file

@ -141,7 +141,6 @@ Ox.CalendarEditor = function(options, self) {
},
operator: '-',
title: 'Duration',
unique: true,
visible: true,
width: 256
},
@ -239,7 +238,8 @@ Ox.CalendarEditor = function(options, self) {
pageLength: self.options.pageLength,
scrollbarVisible: true,
selected: self.options.selected ? [self.options.selected] : [],
sort: self.options.sort
sort: self.options.sort,
unique: 'id'
})
.bindEvent({
'delete': removeEvent,