10387 Posts in 2198 Topics by 1712 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 291 Views |
-
memberprofiles validation of added field

16 August 2011 at 1:46am
I added a field a field "Accept Terms" like it is descriped here:
http://deadlytechnology.com/silverstripe/membership-module/But there is no error shown when they checkbox is not selected. I choosed requiered for the field in BE. Email is send with Activation Key. Now when the User tries to activate, comes up an error "Page not found".
Does anybody know how to validate if the checkbox "Accept Terms" is checked directly in the form?
Here my Seller Class:
<?php
class Seller extends DataObjectDecorator{
function extraStatics(){
return array(
'db' => array(
'AcceptTerms' => 'Boolean'
)
);
}
}
?>And the line in config:
Object::add_extension('Member', 'Seller');
| 291 Views | ||
|
Page:
1
|
Go to Top |

