Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Customising the CMS /

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Report - Calendar control


Go to End


1134 Views

Avatar
Steeloctopus

Community Member, 5 Posts

5 April 2016 at 11:49pm

Hi

I'm trying to create a calendar control with the date picker control.

   
public function parameterFields() {

        $tree = new TreeDropdownField('Expertise', 'Select Expertise', 'SiteTree');
        $tree->setTreeBaseID(3);
        $calendar = new DateField('ArticleDate', 'Article Date');

        $fields = new FieldList(array($tree,$calendar));
        return $fields;
    }

I have added the field but the calendar date picker does not display when you click on the field.

thanks