17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 559 Views |
-
Error talking to server

26 March 2008 at 7:06am
Hi I get this error when trying to save a record using DateField or CalendarDateField on a CalendarDateField, any hint on debugging that stuff?
<?
class Event extends DataObject {static $db = array(
'Lieu' => 'Text',
'CodePostal' => 'Text',
'DateDebut' => 'Date',
'DateFin' => 'Date'
);
static $has_one = array(
'MyProject' => 'Project'
);
function getCMSFields_forPopup() {
$fields = new FieldSet();
$fields->push( new TextField( 'Lieu' ) );
$fields->push( new TextField( 'CodePostal' ) );
$fields->push( new CalendarDateField( 'DateDebut' ) );
$fields->push( new CalendarDateField( 'DateFin' ) );
return $fields;
}}?>
| 559 Views | ||
|
Page:
1
|
Go to Top |

