Browse Source

Add an option to m2x_options to force enable/disable search more button

pull/209/merge
David Coninckx 9 years ago
committed by Yannick Vaucher
parent
commit
3e79de1c60
  1. 7
      web_m2x_options/static/src/js/form.js

7
web_m2x_options/static/src/js/form.js

@ -58,6 +58,11 @@ openerp.web_m2x_options = function (instance) {
if (typeof this.options.limit === 'number') {
this.limit = this.options.limit;
}
// add options search_more to force enable or disable search_more button
if(typeof this.options.search_more === 'boolean') {
this.search_more = this.options.search_more
}
var dataset = new instance.web.DataSet(this, this.field.relation,
self.build_context());
@ -95,7 +100,7 @@ openerp.web_m2x_options = function (instance) {
// search more... if more results that max
if (values.length > self.limit) {
if (values.length > self.limit || self.search_more) {
values = values.slice(0, self.limit);
values.push({
label: _t("Search More..."),

Loading…
Cancel
Save