J
|
Jane 2/20/2008 |
Hi, |
R
|
richardbeaumont 5/17/2008 |
I wanted to do this - but the option is not there for the checkbox type. Hi, to setup field as required check off corresponding check box on the "Edit as" settings dialog on the Visual Editor tab. |
S
|
steveh 5/19/2008 |
You can't really have a checkbox as required as the unchecked is one of the values. |
R
|
richardbeaumont 5/19/2008 |
You can't really have a checkbox as required as the unchecked is one of the values. You'd need to check the value in the save record event and reject with a popup.
|
J
|
Jane 5/20/2008 |
Hi, if (!$userdata["FieldName"]) { ?><script> alert("error"); </script><?php return false; } return true; |