veilig
Joined: 14 Apr 2008 Posts: 7
|
Posted: Mon Apr 14, 2008 9:50 pm Post subject: split group on two lines |
|
|
I need two groups of elements that need to be 1 group but on seperate lines EXACTLY like this:
its the golf step on the form. you have to submit the first form and then you will see step #3 is the one I'm referring to.
[url]http://www.golfzoo.com/-screen-scnWizardSteps(3,1)-_ispost-1-.htm[/url]
How do I go about doing this?
//Group1
$golf[] =& $this->createElement('select', 'amGolfers', null, $golfers);
$golf[] =& $this->createElement('select', 'amTeeTime', null, $morning);
$golf[] =& $this->createElement('select', 'amCourse', null, $courses);
//Group 2
$golf[] =& $this->createElement('select', 'pmGolfers', null, $golfers);
$golf[] =& $this->createElement('select', 'pmTeeTime', null, $evening);
$golf[] =& $this->createElement('select', 'pmCourse', null, $courses);
$this->addGroup($golf, null, $prettyPrint, ' ', false); |
|