This topic is locked

Copy Page

7/6/2007 11:36:08 AM
PHPRunner General questions
G
garivera author

Using the Copy Function, how can I make certain fields that generally has information to show up as a blank field; thus forcing the user to insert new information.
Thanks
Gabe

J
Jane 7/9/2007

Gabe,
to reset values on the Copy page use Add page: Before display event on the Events tab.

Here is a sample code:

global $smarty;

$smarty->assign("value_FieldName","");



where FieldName is your actual field name.