Forum Discussion
WilliamMarrone
8 years agoQrew Cadet
That correctly returned the three records, is there any way to attach this to a Button to run from a homepage?
_anomDiebolt_
8 years agoQrew Elite
> ... return the tuition as a number
tuition = parseFloat($("tuition", this).text());
> ... or convert it to summarize
Based on the names of your other fields (name and major) I would have assumed the record represented a person in the aggregate and that tuition would represent the current semester's tuition. If you need to summarize tuition you need to further describe your records and any child records along with how you want tuition to summarize (total, average, harmonic mean?)
tuition = parseFloat($("tuition", this).text());
> ... or convert it to summarize
Based on the names of your other fields (name and major) I would have assumed the record represented a person in the aggregate and that tuition would represent the current semester's tuition. If you need to summarize tuition you need to further describe your records and any child records along with how you want tuition to summarize (total, average, harmonic mean?)