J
|
Jane 1/29/2009 |
Hi, |
G
|
guy 1/29/2009 |
Hi, to set up multi-select dropdown on the add/edit pages set up field as Lookup wizard on the "Edit as" settings dialog on theVisual Editor tab and turn on Multiline option.
|
K
|
kadidarm author 1/30/2009 |
Hi, to set up multi-select dropdown on the add/edit pages set up field as Lookup wizard on the "Edit as" settings dialog on theVisual Editor tab and turn on Multiline option.
|
J
|
Jane 1/30/2009 |
Hi, |
![]() |
vin7102 1/30/2009 |
Hi |
J
|
Jane 1/30/2009 |
Vince, |
K
|
kadidarm author 1/30/2009 |
any suggestions on code for this? |
![]() |
vin7102 1/30/2009 |
Hi Kris, global $conn; if ($values["Employee_Name"]) { $arr = explode(",",$values["Employee_Name"]); for ($i=0;$i<count($arr);$i++) { $strInsert = "insert into payroll_main (Employee_Name) values ('".$arr[$i]."')"; db_exec($strInsert,$conn); return false; } } |
T
|
thesofa 2/3/2009 |
OK, I needed to add a series of records to a child table from a master record table |