We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Elenchi di candidati ordinati per punteggio, una colonna con il numero progressivo, dove il numero progressivo non conteggi le domande disabilitate.
GB ha proposto la seguente, concordo di poterlo gestire direttamente con JS
var count = 1; var theader = $("table.ui > thead > tr").prepend("<th>#</th>"); var tbody = $("table.ui > tbody > tr").each( function( index ) { var elem = $(this).find("td i.minus").length > 0 ? "-" : count++; $(this).prepend("<td>"+elem+"</td>"); });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Elenchi di candidati ordinati per punteggio, una colonna con il numero progressivo, dove il numero progressivo non conteggi le domande disabilitate.
GB ha proposto la seguente, concordo di poterlo gestire direttamente con JS
The text was updated successfully, but these errors were encountered: