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

Hello, in many2many widget sometimes when you has more than 80 records, you select any records in first page and search more records, but the selected items are lost, i am working to dont lost this.

I found where code does this, hack some JS function but still dont know where runs add rows to widget.

My code[1] is running ok to dont lost selected items in SelectCreateListView.

Waiting for your help to pass selected_items and add to records.

Regards,

openerp.web.form.SelectCreateListView = openerp.web.ListView.extend({
init: function (parent, dataset, view_id, options) {
    this.selected_items = [];
    this._super(parent, dataset, view_id, options);
},    
select_record: function(index) {
    console.log('selecciono items '+index);
    this.popup.on_select_elements([this.dataset.ids[index]]);
    this.popup.stop();
},
do_select: function(ids, records) {
    this._super(ids, records);
    this.selected_items.push(ids[0]);
    console.log('selected '+ids);
    console.log('selected_items: '+this.selected_items);
    this.popup.on_click_element(ids);
}

}); }

Imagine profil
Abandonează
Autor Cel mai bun răspuns

By now is working with this code:

openerp.web.form.SelectCreateListView = openerp.web.ListView.extend({
init: function (parent, dataset, view_id, options) {
    this.selected_items = [];
    this._super(parent, dataset, view_id, options);
},
do_select: function(ids, records) {
    this._super(ids, records);
    if (ids.length > 0){
        dlist = this.selected_items.concat(ids);
        this.selected_items = dlist.filter(function(elem, pos) {
            return dlist.indexOf(elem) == pos;
        });
    }
    this.popup.on_click_element(this.selected_items);
}

});

So i have an issue with unselected items in tree, i was checking the code and has not do_unselected, waiting for your feedback to unselect !

Regards,

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
0
mar. 15
4200
2
oct. 19
9622
1
feb. 18
3306
1
mar. 15
4936
0
iul. 25
233