1
I have a table that when you don’t have information it’s filled with a *
for example:
<tr>
<td>Quant. do produto</td>
<td>*</td>
</tr>
But the same can appear with information:
<tr>
<td>Quant. do produto</td>
<td>12</td>
</tr>
How would I hide what is without information (owning the *
) dynamically?
Note: if necessary, I can remove the *
and leave simply empty .
You can make it happen automatically?
– YH Software
Yes, you do. I changed the answer. ;)
– Sam
Vlw for the help friend ;)
– YH Software