3060 Posts in 864 Topics by 646 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 201 Views |
-
SS3 required fields on page

25 February 2013 at 11:07pm
I have a custom field that I need to be required (and not allow the page to save if it is not present). With SS2 I followed this post's (http://www.silverstripe.org/data-model-questions/show/6128 advice and had the following in my page class (after the statics and before the getCMSFields function:
function getCMSValidator() {
return new RequiredFields('ConcertDate');
}This no longer correctly works in SS3 (raises error but does allow a new page to be saved) so I suspect there is a new way? Any help much appreciated.
-
Re: SS3 required fields on page

6 April 2013 at 6:49pm Last edited: 6 April 2013 7:12pm
I have the same problem.
I need to validate a couple of fields in the backend.
But I didn't find any solution.I found this thicket
http://open.silverstripe.org/ticket/2915
which was set to: WONTFIX 2 weeks agocan anyone please give us a solution for this issue.
Thanks for your time
-
Re: SS3 required fields on page

24 April 2013 at 8:44pm
In my case
public function getCMSValidator(){
return new RequiredFields('Code', 'Name');
}worked like a charm.
I'm using SS3.0
| 201 Views | ||
|
Page:
1
|
Go to Top |


