Is there CSS code that could make the masked input widget field not editable by the form filler? 

  • ginnyc88
    Asked on August 14, 2019 at 4:40 PM

    So that it just shows the result of a calculation I applied to it?

  • David JotForm Support Manager
    Replied on August 14, 2019 at 6:31 PM

    The Masked Input widget does not have a read-only option, because the purpose of it is to have a manual input. So, a workaround would be through CSS injection, please try this code(specific for this widget):

    #id_49{

    pointer-events: none !important;

    }

    1565821705pointerevent Screenshot 10

    If there are other Masked Input widget where you want to disable the input, please let us know, so we can provide the code to target each of them.

    Note: I noticed that you have not added a submit button on your form. The button that says "Submit" is just the "next" button of the page break field. So, if you actually want to receive user's data, please add a submit button:

    1565821831submitbutton Screenshot 21