10689 Posts in 2796 Topics by 1518 members
Jump to:If this is your first visit, you will need to register before you can post. However, you can browse all messages below.
| Page: 1 | go to end | Reply | |
| Author | Topic: Error talking to server | 265 views |

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;
}
}?>
| 265 views | |||
| go to top | Reply |