製作Record 中的拷貝及上一筆,下一筆的按鈕

CodeCharge Studio 2.x, 3.x, 4.x, 5.x
回覆文章
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

製作Record 中的拷貝及上一筆,下一筆的按鈕

文章 yehlu »

在 html 中加入
<!-- BEGIN Button Button_Update -->
<input class="AquaButton" type="submit" value="更新" name="{Button_Name}">
<input class="AquaButton" type="submit" value="拷貝" name="Button_Insert">
<input class="AquaButton" onclick="location='cust2.php'" type="button" value="新客戶" name="Button_New">
<input class="AquaButton" onclick="location='cust2.php?cust_id={up_record}'" type="button" value="上一筆" name="Button_Up">
<input class="AquaButton" onclick="location='cust2.php?cust_id={down_record}'" type="button" value="下一筆" name="Button_Down">
<!-- END Button Button_Update -->


在 Record 中加入
hidden -> up_record
hidden -> down_record

在event中加入
$cust->up_record->SetValue($cust->cust_id->GetValue()-1);
$cust->down_record->SetValue($cust->cust_id->GetValue()+1);
回覆文章

回到「CodeCharge Studio」