The callback from “vlookupChildAddedCallback” does not have any information about the form it return from, but you can use “vlookupAddChildPreCheck” to keep track of it – like this:
var current_vLookup_fin = "";
function vlookupAddChildPreCheck(fin){
current_vLookup_fin = fin;
return true;
}
function vlookupChildAddedCallback(){
if(current_vLookup_fin === "vLookupTasks"){
// The fin is vLookupTasks - do shomething
}
}
Alexander