How to remove certain fields from Input table?

  • bkirbs34
    Asked on August 4, 2017 at 12:05 PM

    Is it possible to make certain fields within an input table either removed or null?

    For example, I'd like remove 1-2 options from a specific column and/or row but not the entire thing.

    Jotform Thread 1216107 Screenshot
  • Nik_C
    Replied on August 4, 2017 at 1:30 PM

    You can insert the below CSS code in your Custom CSS code field:

    select#input_126_4_0 {

        display: none;

    }

    select#input_126_5_0 {

        display: none;

    }

    select#input_126_6_0 {

        display: none;

    }

    select#input_126_6_7 {

        display: none;

    }

    select#input_126_5_7 {

        display: none;

    }

    select#input_126_4_7 {

        display: none;

    }

    That should make your input table look like this:

    How to remove certain fields from Input table? Image 1 Screenshot 20

    Please let us know if you have any further questions.

    Thank you!

  • bkirbs34
    Replied on August 4, 2017 at 3:37 PM

    This is perfect, thank you!