You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am having some issue with the _when function.
Here is my code :
varmyGoogleSpreadsheet=;// some google spreadsheet urlvards=[];varnbTab=2;for(j=0;j<nbTab;j++){ds[j]=loadDS(myGoogleSpreadsheet,j+1);}varstr="";for(j=1;j<nbTab;j++){str+="ds["+(j-1)+"].fetch()";if(j<nbTab-1){str+=",";}}_.when(eval(str)).then(function(){log("eval ds0:"+ds[0].columnNames()+"ds1:"+ds[1].columnNames());});_.when(ds[0].fetch()).then(function(){log("not eval"+ds[0].columnNames());});
The first _when() doesn't return a result at each time.
Hello,
I am having some issue with the _when function.
Here is my code :
The first _when() doesn't return a result at each time.
While if I change the code too :
I always seem to have a result. Am I missing something here ?
Kind regards
guillaume
The text was updated successfully, but these errors were encountered: