0

Hide view tables when empty

Hello,

I would like to know if there is a way to hide view tables when they are empty?

Thanks for your help

3 replies

null
    • Sviluppatore Ninox
    • Fabio
    • 4 wk ago
    • Reported - view

    Hi Sébastien.

    Yes, it is possible. 

    I see that you already have a direct reference to the “Abbonnements” table, so my advice to you is to use this link to speed up the use of your view. So.

    Replace:

    let me := this;
    select Abonnements where Comptes = me

    With:

    'Historique des abonnements 1:N'

    After that, you can hide this view, in the section:

    'Afficher a chame seulement si'

    by inserting this code:

    cnt('Historique des abonnements 1:N') > 0

    I hope this helps

    Fabio
     

    • Fred
    • 4 wk ago
    • Reported - view

    You can also do:

    not 'Historique des abonnements 1:N'

    This acts like a true/false. If there are any records then it is true if not then it is false.

    • Créateur de bien-être
    • Sebastien_Guillet
    • 3 wk ago
    • Reported - view

    Thank you very much for your help.