3215 Posts in 848 Topics by 811 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1310 Views |
-
Problem with Using DropdownField in CMS

11 March 2009 at 7:04pm
Hi
Trust me, it took me days to figure this out but if i have the headache on that, then someone else might probably be having same.
But here is how it worked:
In the
static $db = array('Issu' => "Enum('One, Two, Three','One')",
);
and in the :
function getCMSFields()
{
$fields = parent::getCMSFields();
$fields -> addFieldtoTab('Root.Content.Main', new DropdownField('Issu', 'Issue Type', Array('1'=>'One', '2'=>'Two', '3'=>'Three')));return $fields;
}Just replace the One, Two, and Three with you titles and you can also continue the array. Its quite simple.
-
Re: Problem with Using DropdownField in CMS

11 March 2009 at 7:45pm
In your DropdownField constructor you should be using "$this->dbObject('Issue')->enumValues()" rather than the hard-coded array.
| 1310 Views | ||
|
Page:
1
|
Go to Top |

