|
@@ -72,7 +72,7 @@ function selectRowsSuccess(config,data){
|
|
|
function populateSourceTable(par){
|
|
|
let debug=true;
|
|
|
if (debug){
|
|
|
- print(par.config("populateSourceTable: Starting");
|
|
|
+ print(par.config,"populateSourceTable: Starting");
|
|
|
}
|
|
|
let config=generateQConfig(par.source.queryName);
|
|
|
config.schemaName=par.source.schemaName;
|
|
@@ -83,7 +83,7 @@ function populateSourceTable(par){
|
|
|
}
|
|
|
|
|
|
//config.success=function(data){populateSourceTableData(data,par)};
|
|
|
- config.success=function(data){selectRowsSuccess(config,data)};
|
|
|
+ config.success=function(data){selectRowsSuccess(par.config,data)};
|
|
|
|
|
|
config.failure=function(errorTxt){print(par.config,"populateSourceData:fail"+errorTxt.exception)};
|
|
|
LABKEY.Query.selectRows(config);
|