17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1703 Views |
-
New page type: Specifying required fields

20 May 2008 at 7:09am
When creating a new page type, you can specify extra fields. Is it possible to specify if these fields are mandatory or optional to fill in (when a new page is created)?
-
Re: New page type: Specifying required fields

20 May 2008 at 9:44am
Afaik validation in the cms doesn't work, so there's not a way to 'force' some fields to be filled out. This might be changed in the latest versions though, I'm not aware of that.
You could add some literalfields to the getCMSFields() method though in which you specify/explain which fields are mandatory.
-
Re: New page type: Specifying required fields

31 May 2008 at 3:41am Last edited: 31 May 2008 3:42am
dio5, can you post an example of how to do it please?
I've already tried to do something like this:function getCMSFields() {
$fields = parent::getCMSFields();...
new RequiredFields('Name', 'Age', 'City');...
return $fields;
}
I can't get this to work, if you could give an example I would appreciate.
Thank you in advance. -
Re: New page type: Specifying required fields

31 May 2008 at 3:46am
Euhm, you can't. Like I said, there is no validation in the cms.
| 1703 Views | ||
|
Page:
1
|
Go to Top |



