A
|
alang 4/9/2008 |
I assume you are asking about the ability to edit field contents - if not, can you expand on your question. Do you have "edit record" checked on the "Choose pages" tab? You also need to have the appropriate boxes checked on the next tab "Choose fields". |
P
|
pnutz author 4/9/2008 |
Ok |
J
|
Jane 4/10/2008 |
Hi,
$smarty->assign("value_commentsField2","");
$str = $oldvalues["commentsField"]." ".$values["commentsField2"]; $values["commentsField"] = $str; unset($values["commentsField2"]); |
S
|
steveh 4/10/2008 |
You'd need to do something like select commentsfield,'' as commentsfield2 |
P
|
pnutz author 4/10/2008 |
Great |