We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
  • The changelog says "[#5267] Fix issue with FormItRetriever and array fields" for 2.0.0.

    But I’m still not able to receive radio values from the form when redirecting to another page.

    Form:
    [[!FormIt?
    &hooks=`redirect`
    &redirectTo=`23`
    &store=`1`
    ]]
    
    <form action="[[~[[*id]]]]" method="post">
    <input type="radio" name="whatever[]" value="1" />
    <input type="radio" name="whatever[]" value="2" />
    <input type="radio" name="whatever[]" value="3" />
    <input type="submit" />
    </form>


    Landing page:
    [[!FormItRetriever]]
    [[+fi.whatever]]


    "fi.whatever" outputs nothing. Any hint?

    Thanks, Lars

    MODX Revolution 2.1.2-pl (traditional)
    formit-2.0.0-rc1
    • Name the radios "whatever" and not "whatever[]" and it works for me.

      <form action="[[~[[*id]]]]" method="post">
      <input type="radio" name="whatever" value="1" />
      <input type="radio" name="whatever" value="2" />
      <input type="radio" name="whatever" value="3" />
      <input type="submit" />
      </form>