17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1231 Views |
-
Dropdownfield doesn't seem to work inside getCMSFields_Popup

13 August 2008 at 10:37am Last edited: 13 August 2008 10:47am
hi all,
Need to show a dropdownfield inside the popup of a CMF, it shows up, but when i click save it keeps forever trying to.
Removing the dropdownfield from the fieldset, works fine!!!
Here is my code, any ideas? same problem anywhere?function getCMSFields_forPopup() {
$fields = new FieldSet();
$fields->push( new TextField( 'Name', 'First Name' ));
$fields->push(new TimeField('Time','Time','00:00','G:i'));
here comes the problem
$fields->push(new DropdownField('Weekday',
'Day of the week',
Array('1'=>'Sunday',
'2'=>'Monday' ... and so on
)
)
);
return $fields;
}Weekday is enum type in $db
Weekday=>"enum('Sunday,Monday,Tuesday,Wenesday,Thursday','Sunday');
-
Re: Dropdownfield doesn't seem to work inside getCMSFields_Popup

13 August 2008 at 12:23pm
It should work fine. Try a capitial E on enum as it is referring to the Enum class in SS so enum might not exist. Then make sure you db/build
| 1231 Views | ||
|
Page:
1
|
Go to Top |


