revert changes undone in #2224
This commit is contained in:
parent
e38a09cd42
commit
9bb6b7bcb9
2 changed files with 5 additions and 3 deletions
|
@ -121,9 +121,11 @@ Ox.FormPanel = function(options, self) {
|
||||||
.appendTo(self.$section);
|
.appendTo(self.$section);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
self.$list.bindEvent('load', function() {
|
||||||
self.$forms.forEach(function($form, i) {
|
self.$forms.forEach(function($form, i) {
|
||||||
self.$list.value(self.options.form[i].id, 'valid', $form.valid());
|
self.$list.value(self.options.form[i].id, 'valid', $form.valid());
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
|
||||||
self.$sections[0].show();
|
self.$sections[0].show();
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@ Ox.TreeList = function(options, self) {
|
||||||
max: self.options.max,
|
max: self.options.max,
|
||||||
min: self.options.min,
|
min: self.options.min,
|
||||||
unique: 'id'
|
unique: 'id'
|
||||||
}, Ox.clone(self))
|
}, Ox.extend(Ox.clone(self), {updateCallbacks: []})) // pass event handler
|
||||||
.addClass('OxTableList OxTreeList')
|
.addClass('OxTableList OxTreeList')
|
||||||
.css({
|
.css({
|
||||||
width: self.options.width + 'px',
|
width: self.options.width + 'px',
|
||||||
|
|
Loading…
Reference in a new issue