I'm beginner in Emberjs,
I want to calculate the total amount in the added item list.
For example:
(03) items added in list ------------------------ Item-1 3,000.00 Item-2 4,000.00 Item-3 3,000.00 ------------------------- Total 10,000.00 Print -------------------------
How to create the view and controller in emberjs for calculate the total amount?
How to create the PDF file and print the same output as PDF format?
Thanks advance. :)
Total Amount = {{#each product in controller itemController="productsEdit"}}{{product.unitprice}}{{/each}}
` I'm getting output like this : `Total Amount = 300040003000` It's merged each item's price, But i need total amount(3000+4000+3000 = 10000). **How to create the view and controller for this functionality?** – TamilG Oct 01 '13 at 21:10Total Amount = {{#each product in controller itemController="productsEdit"}}{{product.unitprice}}{{/each}}
` I'm getting output like this : Total Amount = 300040003000 It's merged each item's price,But i need total amount(3000+4000+3000 = 10000). – TamilG Oct 01 '13 at 21:21