1 頁 (共 1 頁)

Record 預設日期中式

發表於 : 2005-10-19 15:52:33
yehlu

Show()

$this->sign_up->SetValue($this->ds->sign_up->GetValue());
改為
$this->sign_up->SetValue(date_csttotw($this->ds->sign_up->GetValue()));

且欄位的預設值Default Value 設為
date_csttotw(date("Y-m-d"))

用 event 的方法

發表於 : 2005-10-19 22:14:48
yehlu
欄位的預設值Default Value 設為
date_csttotw(date("Y-m-d"))

event => student_sign_up_BeforeShow()

加入
if($student->ds->sign_up->GetValue()<>""){
$student->sign_up->SetValue(date_csttotw($student->ds->sign_up->GetValue()));
}