using Popup on outer table of MULTI4 [message #1142] |
Thu, 25 October 2007 13:13 |
alrobertson
Messages: 9 Registered: October 2007 Location: Vancouver
|
Junior Member |
|
|
When I use a popup for a field in the outer table of a MULTI4,
the outer table's popcall() function does not get called but the inner tables popupcall() function gets called instead.
I made a small change to childForm() to get me by. I added
$found_x = true; to the conditional where _x$ is being stripped off. Then added this code after the 'popup|filepicker' has been determined:
if (($pattern_id == 'MULTI4') AND ($found_x)) {
reset($object_array);
$objectname = key($object_array);
$dbobject = $object_array[$objectname];
}
I'm sure you will have a better way, but I thought I should let you know about the issue.
Thanks
|
|
|