Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
4962 Prikazi

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);
}

}); }

Avatar
Opusti
Avtor Best Answer

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,

Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
0
mar. 15
4196
2
okt. 19
9617
1
feb. 18
3301
1
mar. 15
4932
0
jul. 25
220