Refresh QLI panel on Save of Quote

We are trying to refresh QLI panel from Quote save. We have custom record.js file in Quote entity, on certain action we want render QLI panel. 

we used below :

this.render(); 

this._renderHTML();

But still no luck.

Is there any way to refresh QLI panel from Quote record view? Please suggest.

Parents Reply Children
  • Hi hats and Harald Kuske,

    I tried Harald's response, I got product bundle collection only and not Products collection. Below is code I tried

    _.each(current.model._relatedCollections, function(collection){
          if(collection.link.name == "product_bundles")
          collection.fetch({relate: true});
    });

    But it append complete collection of Product Bundle only and not products linked to Product Bundle. Above code appends collection and not refresh it. 

    Please let me know if I missed something.