Hi. I occasionally get an unwanted space <tr> appear in my forms without no real explanation.
Does anyone know why this happens? I have checked my D365 form and all appears correctly.
I normally use jQuery to hide this row if empty, but why does it appear in the first place?
$(document).ready(function(){
$('tr').each(function(){
if($(this).find('td').filter(function() { return $.trim($(this).text()) !== ''; }).length == 0) {
$(this).hide();
}
});
});


