I am having a scenario where I have repeat items list with having check box on each item and "Select All" functionality also on page header section and if either I select one item or select all (Multiple), the add to cart button gets activated( Default disable and enable when any item in the list is checked or selected ) .
But now the point is Addtocart
functionality of ng-cart directive is written in a way that the Addtocart
button should be on each item in list., but the scenario that I have is that I have to first check either one item or multiple then having only one Addtocart
button to make or add single or multiple items added in one go .
Help me with this.
Resources : https://github.com/snapjay/ngCart
As given in the documentation and also the source code, there is a method
addItem
onngCart
service which can be used to add items to the cart like :So, In your case, once you check if one/more items are checked, you can call this method by looping through each of your checked items.
Make sure you add the module
ngCart
in your app module dependencies and the servicengCart
in your Controller to access all the shared methods of the service.Make below changes to get it working :
docListView.html :
docListController.js :