0

Sort Cards

I have this script. There any way to sort the card via Total Puntos the order by don't work

let tab := if View then
        ((select Equipos) order by 'Total Puntos')[Status = 1]
    else
        (select Equipos order by 'Total Puntos')[Status != 1]
    end;
let allEquipos := unique(tab.Equipo);
let object := for i in allEquipos do
        {
            termin: text(i),
            job: tab[Equipo = i].{
                id: Id,
                lEquipo: Equipo,
                cC: Campo,
                tJugados: 'Total Jugados',
                tPuntos: 'Total Puntos',
                status: number(Status)
            }
        }
    end;
let css := "
<style>
.grid-container {
    display:grid;
    grid-template-columns:repeat(auto-fill,22em);
    grid-gap:1em
}
.gridform{
    font-size:small;
    border-radius:.5em;
    padding:1em;
    box-shadow:2px 2px dimgray;
    color:DimGray;
    background-color:#e3ecd4;
}
.jump:hover{cursor:pointer;background-color:#bbddbb;}
ul{list-style-type:circle;}
</style>
";
let content := ---
<aside class=grid-container>{ for i in object order by termin do }
    <aside class=gridform><h2 style=text-align:center>{ i.termin } </h2>{ for j in i.job do }
        <ul>
            <li class=jump onclick=ui.popupRecord('{ j.id }')><b>equipo local:</b></b></b> { j.lEquipo }</li>
            <li><b>Campo:</b></b></b> { j.cC }</li>
                        <li><b>Total Jugados:</b></b> { j.tJugados }</li>
            <li><b>Total Puntos:</b></b> { j.tPuntos }</li>
        </ul>{ end }
    </aside>{ end }
</aside>
    ---;
html(css + content)

9 Antworten

null
    • mirko3
    • vor 2 Monaten
    • Gemeldet - anzeigen

    try this in line 19

    end order by item(job, 0).number(tPuntos);
    

    Mirko

      • Rafael_Sanchis
      • vor 2 Monaten
      • Gemeldet - anzeigen

       

      Hi Mirko thanks but error.

    • mirko3
    • vor 2 Monaten
    • Gemeldet - anzeigen

    than I need an axample DB

    • mirko3
    • vor 2 Monaten
    • Gemeldet - anzeigen

    try this way, but I don't know your db-structurs

    let tab := if View then
            ((select Equipos) order by 'Total Puntos')[Status = 1]
        else
            (select Equipos order by 'Total Puntos')[Status != 1]
        end;
    let allEquipos := unique(tab.Equipo);
    let object1 := for i in allEquipos do
            {
                termin: text(i),
                job: first(tab[Equipo = i].{
                    id: Id,
                    lEquipo: Equipo,
                    cC: Campo,
                    tJugados: 'Total Jugados',
                    tPuntos: 'Total Puntos',
                    status: number(Status)
                })
            }
        end;
    let object := (object1 order by job.number('Total Puntos'));
    let css := "
    <style>
    .grid-container {
        display:grid;
        grid-template-columns:repeat(auto-fill,22em);
        grid-gap:1em
    }
    .gridform{
        font-size:small;
        border-radius:.5em;
        padding:1em;
        box-shadow:2px 2px dimgray;
        color:DimGray;
        background-color:#e3ecd4;
    }
    .jump:hover{cursor:pointer;background-color:#bbddbb;}
    ul{list-style-type:circle;}
    </style>
    ";
    let content := ---
    <aside class=grid-container>{ for i in object order by termin do }
        <aside class=gridform><h2 style=text-align:center>{ i.termin } </h2>{ for j in i.job do }
            <ul>
                <li class=jump onclick=ui.popupRecord('{ j.id }')><b>equipo local:</b></b></b> { j.lEquipo }</li>
                <li><b>Campo:</b></b></b> { j.cC }</li>
                            <li><b>Total Jugados:</b></b> { j.tJugados }</li>
                <li><b>Total Puntos:</b></b> { j.tPuntos }</li>
            </ul>{ end }
        </aside>{ end }
    </aside>
        ---;
    html(css + content)
    
    • mirko3
    • vor 2 Monaten
    • Gemeldet - anzeigen

    Hi Rafael. Try this.

    let tab := if View then
            ((select Equipos) order by -'Total Puntos')[Status = 1]
        else
            (select Equipos where Status != 1) order by -'Total Puntos' and 'Total GF'
        end;
    let object := tab.{
            lEquipo: Equipo,
            cC: Campo,
            tJugados: 'Total Jugados',
            tPuntos: 'Total Puntos',
            status: number(Status)
        };
    let css := "
    <style>
    .grid-container {
        display:grid;
        grid-template-columns:repeat(auto-fill,22em);
        grid-gap:1em
    }
    .gridform{
        font-size:small;
        border-radius:.5em;
        padding:1em;
        box-shadow:2px 2px dimgray;
        color:DimGray;
        background-color:#e3ecd4;
    }
    ul{list-style-type:circle;}
    </style>
    ";
    let content := ---
    <aside class=grid-container>{ for i in (object order by text(lEquipo)) order by -number(tPuntos) do }
        <aside class=gridform><h2 style=text-align:center>{ i.lEquipo }</h2>
            <ul>
                <li><b>equipo local: </b>{ i.lEquipo }</li>
                <li><b>Campo: </b>{ i.cC }</li>
                <li><b>Total Jugados: </b>{ i.tJugados }</li>
                <li><b>Total Puntos: </b>{ i.tPuntos }</li>
            </ul>
        </aside>{ end }
    </aside>
        ---;
    html(css + content)
    
      • Rafael_Sanchis
      • vor 2 Monaten
      • Gemeldet - anzeigen

       

      bad luck still not working, but thanks anyway Mirko

    • mirko3
    • vor 2 Monaten
    • Gemeldet - anzeigen

    It works in your db

      • Rafael_Sanchis
      • vor 2 Monaten
      • Gemeldet - anzeigen

       

      Works to many thanks Mirko. Appreciatte

Content aside

  • Status Answered
  • vor 2 MonatenZuletzt aktiv
  • 9Antworten
  • 80Ansichten
  • 2 Folge bereits