Forum Discussion
_anomDiebolt_
8 years agoQrew Elite
Replace this block of code:
_.each(childsData, function(item, rid) {with this block of code:
$("span.QBU_Childs[data-rid=" + rid + "]").html( _.pluck(item, "combined_defects").join("<span style='color:red;'> | </span>") );
});
_.each(childsData, function(item, rid) {
var markup = _.chain(item)
.pluck("combined_defects")
.uniq()
.value()
.join("<span style='color:red;'> | </span>")
$("span.QBU_Childs[data-rid=" + rid + "]").html(markup);
});
- KrissyKrissy8 years agoQrew CadetWorked great! Thanks so much!! One other question, no big deal if no easy solution for this but is there a way to get the data from that field to show up on an e-mailed report? For some reason that field comes over blank when I try to e-mail. I added a formula text field and converted it to text but that didn't do the trick.
- _anomDiebolt_8 years agoQrew EliteThese types of fields contain JavaScript and are are evaluated and displayed in the browser. The displayed values is not the saved value.