J
|
Jane 7/20/2009 |
Hi, |
R
|
roadyx author 7/20/2009 |
Hi, use Add page: Before process event to select values from another tables. Save selected values in the session variables and use these variables as default values on the "Edit as" settings dialog on the Visual Editor tab.
|
J
|
Jane 7/21/2009 |
Hree is just a sample: global $dal; $rs = $dal->TableName->Query("FieldName='".$_SESSION["UserID"]."'",""); $data = db_fetch_array($rs); $_SESSION["Field1"] = $data["Field1"]; $_SESSION["Field2"] = $data["Field2"]; |
R
|
roadyx author 7/24/2009 |
Hree is just a sample:
|
J
|
Jane 7/24/2009 |
I'm not sure that I understand your question correctly. |
R
|
roadyx author 7/24/2009 |
I'm not sure that I understand your question correctly. What do you want to pre-populate on the list page?
|
J
|
Jane 7/27/2009 |
Hi, |