• I have defined the following field:

    [checkbox brochures default:get use_label_element “Option 1” “Option 2” “Option 3”]

    But the field does not respond to the url parameter as per the documentation. I have tried “brochures=1” and “brochures=1_2” and “brochures=Option 1” and nothing seems to work. Does this work for checkboxes?

    Can you advise

    Thanks

Viewing 1 replies (of 1 total)
  • Hello,

    Yes it works, but since you have a space in your value you need to url-encode it.
    So if you encode “Option 1” it becomes “Option%201” (replaced space with %20).

    Now in your case try this:

    ?brochures=Option%201

    It should work.

Viewing 1 replies (of 1 total)

The topic ‘default:get not working with checkboxes’ is closed to new replies.