I have a Configurable List with Maximal Rows = 2.

  • ssccbspadm
    Asked on August 17, 2017 at 11:09 AM

    I have a Configurable List with Maximal Rows = 2.

    How can I put a Static field in each row?

    Look my form 72265304235652 and see: I have today the first column in the Configurable List as dropdown field but I'd like change for a Static field (2015 and 2016) in each line.

  • aubreybourke
    Replied on August 17, 2017 at 11:56 AM

    Yes its possible:

    https://form.jotformpro.com/72284533104955

     

    Here's the field configuration:

    : static : 2015
    Ano : dropdown: 2015,2016: Selecione
    Passeio sítio : dropdown : SIM, NÃO : Selecione
    Enc. Oratório : dropdown : SIM, NÃO : Selecione
    Sacolinha Natal : dropdown : SIM, NÃO : Selecion
    : static : 2016
    : dropdown: 2015,2016: Selecione
    : dropdown : SIM, NÃO : Selecione
    : dropdown : SIM, NÃO : Selecione
    : dropdown : SIM, NÃO : Selecion

     

    Here's the custom CSS:

    .checkbox, .radio {
    margin: 3px 0;
    min-width: 70px;
    }
    .col1, .col2, .col3, .col4, .col5{
    position: relative;
    padding-bottom: 35px;
    }
    .col6, .col7, .col8, .col9, .col10{
    position: relative;
    top: 30px;
    left:-367px;

    }
    button{
    position: relative;

    top: 10px;

    }

  • Chriistian Jotform Support
    Replied on August 17, 2017 at 12:05 PM

    Another workaround that you can try to display a different static text on each line on the widget is adding a single static column on the configurable list widget (i.e Year : static : 20).

    I have a Configurable List with Maximal Rows = 2 Screenshot 30

    Then add this custom CSS code to the widget.

    table#list tr:nth-child(2) span.staticText:after {

        content: "15";

    }

    table#list tr:nth-child(3) span.staticText:after {

        content: "16";

    }

    I have a Configurable List with Maximal Rows = 2 Screenshot 41

    Here is a sample cloned form that you can check: https://form.jotformpro.com/72284784713969.