From you “example-groups.html” file, I am using the “2 Column Group with 2 Rows”.
In my left column I have 5 rows of text fields, in the right column I have 5 radio buttons running vertically.
All works OK except for this code in “process-groups.php”:
for ($i = 1; $i <= 29; $i++) { $text_Input{$i} = new Quform_Element(‘text_input’ . $i); $text_Input{$i}->addFilter(‘trim’); $text_Input{$i}->addValidator(‘required’); $form->addElement($text_Input{$i}); }
where I get the following error message:
There was a problem: Fatal error: Class ‘Quform_Element’ not found in /home/whynotme/public_html/wm/edge_academy/2013/11/video/quform/process-groups.php on line 197
“inputtext” is the first top left field. Any suggestions?