17691 Posts in 4607 Topics by 2180 members
General Questions
SilverStripe Forums » General Questions » Dropdown causes javascript parse error
General questions about getting started with SilverStripe that don't fit in any of the categories above.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba
|
Page:
1
|
Go to End | |
| Author | Topic: | 820 Views |
-
Dropdown causes javascript parse error

5 July 2009 at 7:04am
Hi
I have added the following code to a new page type in an otherwise stable CMS project:
function getCMSFields() {
$fields = parent::getCMSFields();
$fields->addFieldToTab(
"Root.Content.Behaviour",
new DropdownField(
'memberID',
'Please choose a member',
Dataobject::get("Member")->toDropdownMap("ID", "Surname")
)
);
return $fields;
}I have also tried adding the dropdown to the Main tab. The db field referred to is defined as
public static $db = array(
'memberID' => 'int'
);Unfortunately when I now try to Save or Save and Publish i land up with a Javascript Parse Error. I have tried running in dev mode and don't get any errors or warnings before taht point.
Should I report this as a bug or am I doing something dumb?
Thanks
| 820 Views | ||
|
Page:
1
|
Go to Top |

