![]() |
Home Community Mys-Script Creative Off-Topic |
|
![]() |
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
![]()
My commented line is where my error is.
Ive tried a few other things such as $petField = new buildDropDownList("adopt", "AdoptTypeList"); I tried to see if i could hmm by-pass? the buildDropDownList and access the buildAdoptTypeList($name) directly so I tried $petField->add(new buildAdoptTypeList("test")); $petField = new buildAdoptTypeList("test"); none seem to work. i dunno. any help would be apreaciated. I can't seem to get an actual error besides " Internal Server Error 500" I can't seem to put error reporting on. I am not sure if mysidia has it turned off by default or its something else. Code:
public function add(){ $mysidia = Registry::get("mysidia"); $document = $this->document; $document->setTitle("TEST"); $explorerForm = new Form("addform", "add", "post"); $petField = new FieldSet("pet"); $petField->add(new Legend("Adding a Explore Pet")); //$petField->add(new buildDropDownList("adopt", "AdoptTypeList")); $petField->add(new Comment("Pet Chance:", TRUE, "b")); $petField->add(new TextField("textPetPerc")); $explorerForm->add($petField); $myButton = new FieldSet("Test It"); $myButton->add(new Legend("required?")); $myButton->add(new Button("Testing", "submit", "submit")); $explorerForm->add($myButton); |
#2
|
|||
|
|||
![]() Code:
$petField->add(new DropDownList("adopt", "AdoptTypeList")); =) |
#3
|
|||
|
|||
![]() Quote:
Back again.. It doesn't work afterall. It just displays an empty "drop down list". How do I get the drop down list with my contents using the more simple version of the form building? or do I have to go about the more complicated way as seen in other files? like this way: sniplet from breedingview.php Code:
$settingsForm->buildComment("Breeding System Enabled: ", FALSE)->buildRadioList("system", $breedingSystem, $breedingSettings->system) ->buildComment("Breeding Method(heuristic or advanced): ", FALSE)->buildRadioList("method", $breedingMethod, $breedingSettings->method) ->buildComment("Ineligible Species(separate by comma): ", FALSE)->buildTextField("species", ($breedingSettings->species)?implode(",", $breedingSettings->species):"") ->buildComment("Interval/wait-time(days) between successive attempts: ", FALSE)->buildTextField("interval", $breedingSettings->interval) ->buildComment("Minimum Level Requirement: ", FALSE)->buildTextField("level", $breedingSettings->level) |
#4
|
||||
|
||||
![]()
Example of how to create a form, a dropdown list with options, display them and then retrieve information from the dropdown list:
PHP Code:
__________________
![]() ![]() ![]() asp.net stole my soul. |
#5
|
|||
|
|||
![]()
Thanks for the reply IntoRain.
I seen I could do it that way. I am trying to use the methods already provided in the class "class_formhelper.php". This way I don't have to like "recode" whats already there if you can understand. It also seems more reasonable to add new methods to the class_formhelper.php when creating new drop down list with database information then the aproach you mentioned as well. I just don't know how to properly use them. =( |
#6
|
||||
|
||||
![]() Quote:
buildAdoptTypeList is a function of the class FormHelper, so you can't do new buildAdoptTypeList(). You need an instance of FormHelper first, then call its functions: PHP Code:
__________________
![]() ![]() ![]() asp.net stole my soul. Last edited by IntoRain; 09-27-2014 at 04:31 PM. |
#7
|
|||
|
|||
![]()
hmm. Interesting. =)
THanks. You know how I can remove these stupid Internal Server errors? I want to actually see what the real errors are? Its really hard debugging with no error log or actual errors besides a Internal Server Error. |
![]() |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Where is the formatting for form buttons? | Infernette | Questions and Supports | 4 | 06-18-2015 07:47 PM |
Drop Down List to Use Item Messed Up | Abronsyth | Questions and Supports | 4 | 12-30-2014 11:37 AM |
Too many drop down bars? | Infernette | Questions and Supports | 4 | 01-29-2013 05:01 PM |
Submit form | Cindykt | Questions and Supports | 2 | 08-30-2011 08:47 AM |
Alonaria - Human Form | alonaria | Art Gallery | 6 | 02-26-2011 12:09 PM |
What's New? |
What's Hot? |
What's Popular? |