Add a text inside a table content in XML

Requirement is to add a text “Ondergenoemde besparing is afhankelijk van meerdere factoren derhalve kunnen er geen rechten aan ontleend worden. ” below some contents inside a table as shown in the image below:

The existing code content was like this:

<table width="100%">
                            <tr>
<td width="1%" style='color:#616771;'> <img src="https://4494215.app.netsuite.com/core/media/media.nl?id=389790&amp;c=4494215&amp;h=619eee8376acf217ef10" style="width: 15px; height: 15px;padding-top:-8px;" /></td>
<td width="2%" style='color:#616771;'>Opbrengst</td>
                                <td width="25%" align="center"><b>
                                        <!--opbengst--> kWh</b></td>
                                <td width="5%" align="center"><img src="https://4494215.app.netsuite.com/core/media/media.nl?id=389788&amp;c=4494215&amp;h=157bf18a71aaa548eec8" style="width: 15px; height: 15px;padding-top:-8px;" /> </td>
                                <td width="37%" style='color:#616771;'>Besparing met solar</td>
                                <td width="33%"><b>€
                                        <!--besparing--></b></td>
                            </tr>
                            <tr>
<td width="1%" style='color:#616771;'>&nbsp;</td>
                                <td width="3%">&nbsp;</td>
                                <td width="30%">&nbsp;</td>
                                <td width="5%" align="center"> <img src="https://4494215.app.netsuite.com/core/media/media.nl?id=389789&amp;c=4494215&amp;h=4ab50e502f0f2c20c010" style="width: 15px; height: 15px;" /></td>
                                <td width="37%" style='color:#616771;'>Kosten geen solar
                                    <!--Kosten geen solar.png-->
                                </td>
                                <td width="33%"><b>€
                                        <!--kosten--></b></td>
                            </tr>
                        </table>

Added a new code part as a new table content inside the existing one.


            <table width="100%" cellspacing="0" style="font-family: Roboto, system-ui, sans-serif;font-size:10px;"> 

                <tr> 

                    <td width="65%" style="border-bottom:solid 0.5px #616771;border-right:solid 0.5px #616771;border-color: #616771;"> 

                        <table width="100%"> 

                            <tr> 

<td width="1%" style='color:#616771;'> <img src="https://4494215.app.netsuite.com/core/media/media.nl?id=389790&amp;c=4494215&amp;h=619eee8376acf217ef10" style="width: 15px; height: 15px;padding-top:-8px;" /></td> 

<td width="2%" style='color:#616771;'>Opbrengst</td> 

                                <td width="25%" align="center"><b> 

                                        <!--opbengst--> kWh</b></td> 

                                <td width="5%" align="center"><img src="https://4494215.app.netsuite.com/core/media/media.nl?id=389788&amp;c=4494215&amp;h=157bf18a71aaa548eec8" style="width: 15px; height: 15px;padding-top:-8px;" /> </td> 

                                <td width="37%" style='color:#616771;'>Besparing met solar</td> 

                                <td width="33%"><b>€ 

                                        <!--besparing--></b></td> 

                            </tr> 

                            <tr> 

<td width="1%" style='color:#616771;'>&nbsp;</td> 

                                <td width="3%">&nbsp;</td> 

                                <td width="30%">&nbsp;</td> 

                                <td width="5%" align="center"> <img src="https://4494215.app.netsuite.com/core/media/media.nl?id=389789&amp;c=4494215&amp;h=4ab50e502f0f2c20c010" style="width: 15px; height: 15px;" /></td> 

                                <td width="37%" style='color:#616771;'>Kosten geen solar 

                                    <!--Kosten geen solar.png--> 

                                </td> 

                                <td width="33%"><b>€ 

                                        <!--kosten--></b></td> 
                            </tr> 
                    
                        
                        </table> 
           <table width="100%" style="font-family: Roboto, system-ui, sans-serif;font-size:8px;">
                    <tr>
                        <td style='color:#616771;'><br />Ondergenoemde besparing is afhankelijk van meerdere factoren derhalve kunnen er geen rechten aan ontleend worden.</td>
                    </tr>
            </table>

The result of XMl table part after the update is shown below:

Leave a comment

Your email address will not be published. Required fields are marked *