Problem with table generator

Hello, I encounter a problem when I want to display the results of my query using the table generator, the data goes back well in the browser but I have nothing in display




![image|690x388](upload://l6EuBUT7Mnes8VG tiwv3K4ANGN9.png)

How does your table code look like?

 <table class="table">
  <thead>
    <tr>
      <th>Id factures entetes</th>
      <th>E</th>
      <th>E numero bon</th>
      <th>E suffixe bon</th>
      <th>E numero facture</th>
      <th>E type commande</th>
      <th>E total ht</th>
      <th>E montant tva1</th>
      <th>E montant tva2</th>
      <th>E montant tva3</th>
      <th>E total ttc</th>
      <th>E reference commande1</th>
      <th>E reference commande2</th>
      <th>E taux tva1</th>
      <th>E taux tva2</th>
      <th>E taux tva3</th>
      <th>E date commande</th>
      <th>E date livraison</th>
      <th>E date facturation</th>
      <th>Cf code client</th>
      <th>Cf suffixe</th>
      <th>Cf raison</th>
      <th>Cf complement</th>
      <th>Cf rue</th>
      <th>Cf localite</th>
      <th>Cf ville</th>
      <th>Cf pays</th>
      <th>Cl code client</th>
      <th>Cl suffixe</th>
      <th>Cl raison</th>
      <th>Cl complement</th>
      <th>Cl rue</th>
      <th>Cl localite</th>
      <th>Cl ville</th>
      <th>Cl pays</th>
      <th>Id factures lignes</th>
      <th>L</th>
      <th>L gratuit</th>
      <th>L numero bon</th>
      <th>L suffixe bon</th>
      <th>L numero ligne</th>
      <th>L quantite commandee</th>
      <th>L prix base</th>
      <th>L prix net</th>
      <th>L prix calcule</th>
      <th>L montant ht</th>
      <th>L code article</th>
      <th>L libelle1</th>
      <th>L ean</th>
    </tr>
  </thead>
  <tbody is="dmx-repeat" dmx-generator="bs5table" dmx-bind:repeat="serverconnect1.data.query" id="tableRepeat1">
    <tr>
      <td dmx-text="idFacturesEntetes"></td>
      <td dmx-text="E_Id"></td>
      <td dmx-text="E_NumeroBon"></td>
      <td dmx-text="E_SuffixeBon"></td>
      <td dmx-text="E_NumeroFacture"></td>
      <td dmx-text="E_TypeCommande"></td>
      <td dmx-text="E_TotalHT"></td>
      <td dmx-text="E_MontantTVA1"></td>
      <td dmx-text="E_MontantTVA2"></td>
      <td dmx-text="E_MontantTVA3"></td>
      <td dmx-text="E_TotalTTC"></td>
      <td dmx-text="E_ReferenceCommande1"></td>
      <td dmx-text="E_ReferenceCommande2"></td>
      <td dmx-text="E_TauxTVA1"></td>
      <td dmx-text="E_TauxTVA2"></td>
      <td dmx-text="E_TauxTVA3"></td>
      <td dmx-text="E_DateCommande"></td>
      <td dmx-text="E_DateLivraison"></td>
      <td dmx-text="E_DateFacturation"></td>
      <td dmx-text="CF_CodeClient"></td>
      <td dmx-text="CF_Suffixe"></td>
      <td dmx-text="CF_Raison"></td>
      <td dmx-text="CF_Complement"></td>
      <td dmx-text="CF_Rue"></td>
      <td dmx-text="CF_Localite"></td>
      <td dmx-text="CF_Ville"></td>
      <td dmx-text="CF_Pays"></td>
      <td dmx-text="CL_CodeClient"></td>
      <td dmx-text="CL_Suffixe"></td>
      <td dmx-text="CL_Raison"></td>
      <td dmx-text="CL_Complement"></td>
      <td dmx-text="CL_Rue"></td>
      <td dmx-text="CL_Localite"></td>
      <td dmx-text="CL_Ville"></td>
      <td dmx-text="CL_Pays"></td>
      <td dmx-text="idFacturesLignes"></td>
      <td dmx-text="L_Id"></td>
      <td dmx-text="L_Gratuit"></td>
      <td dmx-text="L_NumeroBon"></td>
      <td dmx-text="L_SuffixeBon"></td>
      <td dmx-text="L_NumeroLigne"></td>
      <td dmx-text="L_QuantiteCommandee"></td>
      <td dmx-text="L_PrixBase"></td>
      <td dmx-text="L_PrixNet"></td>
      <td dmx-text="L_PrixCalcule"></td>
      <td dmx-text="L_MontantHT"></td>
      <td dmx-text="L_CodeArticle"></td>
      <td dmx-text="L_Libelle1"></td>
      <td dmx-text="L_EAN"></td>
    </tr>
  </tbody>
</table>

Do you have a live link to this page where i can check what goes wrong?

https://intranet.paritys.com/

I see some default page here:

I’m using Chrome.

EDIT: the page does not load in my Mac Chrome, but loads on Windows Chrome … checking what’s wrong there now.

ok thanks

If helpful- My Apple devices were not willing to load the page, either. Turning off Private Relay did not help, but changing security settings to allow untrusted site certificates got it loading for me in Safari at least.

Is that probably a new domain? Maybe DNS has not refreshed yet?

I need to install a certificate.

1 Like

yes a new subdomain,I made it this morning

if I created a vertical table, the data appears

What is the query you are returning? It’s an object, not an array … that’s why no results are displayed.

Thanks