How do you display a drop down list in forms
IS there a list of input types anywhere for the form class. (i.e.input,inputbox,dropdownlist...)
IF not what is a dropdownlist called on this class? or do i need to use the morf or extended form classes for this?
IF not what is a dropdownlist called on this class? or do i need to use the morf or extended form classes for this?
0
Comments
echo $this->Form->DropDown(...)
. The Gdn_Form class is in/library/core
.You can look at virtually any view to see how it's done. The various views in
/applications/dashboard/views/settings
might be the most straightforward.