Have a detailed table showing items from a datamapper on multiple lines
Sometimes I have to remove a item line, when the amount is 0
I have tried to just set the filed = ‘’,
But this still gives me a very low white row.
In my case i removed 4 item lines in the top of the list = 8 table linens
Any idear on how to solve this, white gab, when removing lines.
Example of the sctipt holding the qty:
var field = ‘’;
field = this.record.fields[‘Parts_Amount’];
if (field == ‘0.00’) {
field = ‘’;
}
this.html(field);