Forum Discussion
_anomDiebolt_
9 years agoQrew Elite
UPDATED NEW AND IMPROVED: I have updated this example with more generic code where all the parameters are floated to the top and a template is used to define how to summarize child records to the parent field in the report (and I am not through refactoring yet):
//parameters:
var dbid = "bkgzxdr4x";
var dbidParents = "bkgzxdr6t";
var dbidChilds = "bkgzxfptb";
var apptoken = "q2aznmd9h7eymbwavpzjbsc8hcf";
var n = 100;
var relatedParentFid = "7";
var relatedParentLabel = "related_parent";
var clist = "3.7.10";
var qbuClass = "QBU_Childs";
var template = "<ul>{{#.}}<li>{{comment}}</li>{{/.}}</ul>";
Concatenate Children To Parent ~ ListAll2
https://haversineconsulting.quickbase.com/db/bkgzxdr6t?a=q&qid=5
Pastie Database
https://haversineconsulting.quickbase.com/db/bgcwm2m4g?a=dr&rid=464
More to come ...
//parameters:
var dbid = "bkgzxdr4x";
var dbidParents = "bkgzxdr6t";
var dbidChilds = "bkgzxfptb";
var apptoken = "q2aznmd9h7eymbwavpzjbsc8hcf";
var n = 100;
var relatedParentFid = "7";
var relatedParentLabel = "related_parent";
var clist = "3.7.10";
var qbuClass = "QBU_Childs";
var template = "<ul>{{#.}}<li>{{comment}}</li>{{/.}}</ul>";
Concatenate Children To Parent ~ ListAll2
https://haversineconsulting.quickbase.com/db/bkgzxdr6t?a=q&qid=5
Pastie Database
https://haversineconsulting.quickbase.com/db/bgcwm2m4g?a=dr&rid=464
More to come ...
- GauravSharma38 years agoQrew CommanderGreat :) I was looking for the same thing. Finally, I found it.
Thanks,
Gaurav - HarrisonHersch28 years agoQrew MemberHi Dan. Do you happen to have a sample of your new solution combined with the comma separated approach in the original, vs the HTML lists?