86 |
$this->add_element( new FEEmail("Email Address", TRUE, "200px") ); |
$this->add_element( new FEEmail("Email Address", TRUE, "200px") ); |
87 |
|
|
88 |
//This will build a scrollable list of checkboxes. |
//This will build a scrollable list of checkboxes. |
89 |
$this->add_element( new FECheckBoxList("List", FALSE, |
$list = new FECheckBoxList("List", FALSE, |
90 |
"200px", "80px", |
"200px", "80px", |
91 |
array("Testing 123" => "foo", |
array("Testing 123" => "foo", |
92 |
"What is this?" => "bar", |
"What is this?" => "bar", |
93 |
"Somone's test" => "blah", |
"Somone's test" => "blah", |
94 |
"Slerm" => "slerm", |
"Slerm" => "slerm", |
95 |
"Flem" => "flom", |
"Flem" => "flom", |
96 |
"One" => 1))); |
"One" => 1)); |
97 |
|
$list->disable_item("Testing 123"); |
98 |
|
$this->add_element( $list ); |
99 |
|
|
100 |
|
|
101 |
$this->add_element( new FEListBox("Anrede", FALSE, "100px", NULL,array("Frau"=>0,"Herr"=>1)) ); |
$this->add_element( new FEListBox("Anrede", FALSE, "100px", NULL,array("Frau"=>0,"Herr"=>1)) ); |
102 |
|
|