Compare commits

..

No commits in common. "6252e27f6c2f75bdc55f3585b60f2d75220d6df7" and "ac1a4ef961e6e2d4a6c383579fbd7d30c6345b8c" have entirely different histories.

View file

@ -15,18 +15,11 @@ Ox.FormPanel = function(options, self) {
var that = Ox.Element({}, self)
.defaults({
form: [],
listSize: 256,
section: null
listSize: 256
})
.options(options || {})
.update({
section: setSection
});
.options(options || {});
if (self.options.section === null) {
self.options.section = self.options.form[0].id;
}
self.section = Ox.getIndexById(self.options.form, self.optoins.section);
self.section = 0;
self.sectionTitle = self.options.form[self.section].title;
self.$list = Ox.TableList({
columns: [
@ -69,7 +62,7 @@ Ox.FormPanel = function(options, self) {
}),
max: 1,
min: 1,
selected: [self.options.selected],
selected: [self.options.form[0].id],
sort: [{key: 'id', operator: '+'}],
unique: 'id',
width: self.options.listSize
@ -137,18 +130,7 @@ Ox.FormPanel = function(options, self) {
});
});
self.$sections[self.section].show();
function setSection() {
var id = self.options.section,
section = Ox.getIndexById(self.options.form, id);
if (self.section != section) {
self.$sections[self.section].hide();
self.section = section;
self.$list.options('selected', [id]);
self.$sections[self.section].show();
}
};
self.$sections[0].show();
that.setElement(Ox.SplitPanel({
elements: [
@ -209,24 +191,13 @@ Ox.FormPanel = function(options, self) {
values <f> values
@*/
that.values = function() {
if (arguments.length === 0) {
var values = {};
self.options.form.forEach(function(section, i) {
values[section.id] = self.$forms[i].values();
});
return values;
} else {
var sections = arguments[0];
self.options.form.forEach(function(form, i) {
if ((form.id in sections) {
self.$forms[i].values(sections[form.id]);
}
});
}
};
return that;
};