Hey Again Bubblers. I need help with an issue that I have been trying to debug or solve for days now. I have an input element in that calculates the Qty and Rate. It works fine. I also have made the “Amount” input element to auto save when its value is changed so that I can display data dynamically in the Sub’total and perform further calculations. But Now. The SubTotal element doesn’t show any thing. It display’s “0.00” and I want it to show the Sub total of all the item’s amount summed up.
Okay so I checked went through your editor in more detail. If you had looked in your debugger you would have spotted that your totals did not change where you expected it.
You can’t use an input value is changed event…
…if the input is not changed by your user. It won’t detect changes in initial content.
You’ll need to adjust your Totals when either of these 2 inputs change…
…since these are the ones your user can make changes to.