Skip to main content
1 resposta
  1. 1 de dez. de 2018, 06:46

    You can put below code in visualforce page header part

    body

    {

    counter-reset: Serial;

    }

    table.table2 tr td.product:first-child:before//replace with your table name

    {

    counter-increment: Serial;

    content:counter(Serial);

    }

     

    And in list display, put below code where you want to increment number

    <td class="product"></td>

     

     
0/9000