Hi,
I am using the following code to hide 'submit' button on a filed that is less than 0. When I use this for a filed within a collection, it only works on the first row. Does anyone know how the collection works with multiple rows. If you can share a script it will be help full.
Thanks in advance.
$(document).ready(function(){
$(document).on('change', '.UAvariance input', function(){
var UAvariance = $(".UAvariance input").val();
var $submit = $('.Submit');
if (UAvariance < '0'){
$submit.hide();
}
else {$submit.show();}
});
});