[IMP] automatically focus first field of edited row

bzr revid: xmo@openerp.com-20120628084547-6fo7fkiy2gh2wb6m
This commit is contained in:
Xavier Morel 2012-06-28 10:45:47 +02:00
parent 94f6eec2ab
commit cbba19da67
1 changed files with 2 additions and 1 deletions

View File

@ -147,7 +147,6 @@ openerp.web.list_editable = function (instance) {
return this.form.on_record_loaded(record.attributes).pipe(function () {
return self.form.do_show({reload: false});
}).then(function () {
// TODO: automatic focus of ?first field
// TODO: [Save] button
// TODO: save on action button?
_(cells).each(function (cell, field_name) {
@ -169,6 +168,8 @@ openerp.web.list_editable = function (instance) {
minHeight: $cell.outerHeight()
});
});
// TODO: actually focus clicked field (if editable)
self.form.fields[self.form.fields_order[0]].focus();
self.trigger('edit:after', record, self.form)
});