Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
4 Răspunsuri
22153 Vizualizări

By default limit for number records per page - 80. Is it possible change this limit to another default value for field x2many? For example to 10.

It is usefull for popup window, if we have long list, better go through pages.

Imagine profil
Abandonează
Cel mai bun răspuns

You can change the default limit in this file:

web/addons/web/static/src/js/view_list.js

If you want to set the default limit to 10, the you can change the paragraph

defaults: {
    // records can be selected one by one
    'selectable': true,
    // list rows can be deleted
    'deletable': false,
    // whether the column headers should be displayed
    'header': true,
    // display addition button, with that label
    'addable': _lt("Create"),
    // whether the list view can be sorted, note that once a view has been
    // sorted it can not be reordered anymore
    'sortable': true,
    // whether the view rows can be reordered (via vertical drag & drop)
    'reorderable': true,
    'action_buttons': true,
    //whether the editable property of the view has to be disabled
    'disable_editable_mode': false,
},

to

defaults: {
    // records can be selected one by one
    'selectable': true,
    // list rows can be deleted
    'deletable': false,
    // whether the column headers should be displayed
    'header': true,
    // display addition button, with that label
    'addable': _lt("Create"),
    // whether the list view can be sorted, note that once a view has been
    // sorted it can not be reordered anymore
    'sortable': true,
    // whether the view rows can be reordered (via vertical drag & drop)
    'reorderable': true,
    'action_buttons': true,
    //whether the editable property of the view has to be disabled
    'disable_editable_mode': false,
    'limit': 10,
},
Imagine profil
Abandonează
Autor

Thanks, it work! BTW what "defaults.limit" and "options.limit". Where it setup?

I have updated my answer. It is better to use the defaults-value for the limit. I was not able to find howto setup the "options".

Cel mai bun răspuns

Hi guys, this code is great but why don't you use standard functionality instead of editing in core web? There is already limit parameter predefined you can use declaring x2many field, for instance to limit number of sale order lines shown in sale order you can define:

        'order_line': fields.one2many('sale.order.line', 'order_id', 'Order Lines', limit=10, readonly=True, states={'draft': [('readonly', False)]}),

Let's use standard functionality!

Imagine profil
Abandonează

Yes, but with this solution you doesn't have the possibility to change page. You only display 10 entries and you can't see the next entries.

Cel mai bun răspuns

Change view_form.js​ > instance.web.form.FieldMany2Many​ in your branch to include the limit​:

initialize_content: function() {
var self = this;

this.$el.addClass('oe_form_field oe_form_field_many2many');

this.list_view = new instance.web.form.Many2ManyListView(this, this.dataset, false, {
'addable': null,
'deletable': this.get("effective_readonly") ? false : true,
'selectable': this.multi_selection,
'sortable': false,
'reorderable': false,
'import_enabled': false,
'limit': self.options.limit,
});
var embedded = (this.field.views || {}).tree;

Then specify the required limit in your field declaration in XML: options="{'no_create': True, 'limit': 3}"


Now each field can have its own limit of records.

Imagine profil
Abandonează
Cel mai bun răspuns

You can change in view_form.js. _.extend(view.options, { ....., limit: self.options.limit || 5, //5 is default value }

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
0
iun. 15
4145
0
iun. 15
4459
0
iun. 16
6259
0
mar. 15
4489
4
oct. 24
4219