I have an application when customer is registering and when he complete the registration he's got filled pdf template. To fill pdf templates I use this gem:
https://github.com/jkraemer/pdf-forms
But with this library I don't know how to check checkboxes. I have 2 checkboxes which customer can choose his gender. I'm trying to check it with this code:
fill "topmostSubform[0].Page2[0].Antragst_Anrede[0]", "Male"
fill "topmostSubform[0].Page2[0].Antragst_Anrede[1]", "Female"
But this not works. I can't find solution for this problem... Could somebody help me?