I've added an extra column in my shopping cart page to include line subtotal as follows:
<span class="amount" t-field="line.price_subtotal" t-field-options="{ "widget": "monetary", "display_currency": "user_id.partner_id.property_product_pricelist.currency_id" }"/>
I've reformatted the page and all other elements are updating automatically (on click) using website_sale.js, however as this field is an extra addition to the page it is not defined in website_sale.js and therefore is not updating correctly.
Unfortunately i'm not familiar with Javascript, however I'm interested in adding another .js file to my template to add this functionality (ie. auto update on click on quantity change), however i'm not sure how to tackle the problem given the .js file is a core file and should not be edited.
If anyone else has any insight into how this might be acomplished I would appreciate your advice.