I\'ve got a dialog that performs a calculation that is dependant on three input fields. When any of them are changed it checks whether they are all filled and if they are i
I had the same issue: Below fix worked for me:
Instead of: $("#ltv-dialog input").change( function() {
$("#ltv-dialog input").change( function() {
I used: $('#ltv-dialog').on('input', function() {
$('#ltv-dialog').on('input', function() {