diff --git a/src/model/course/SectionParticipant.js b/src/model/course/SectionParticipant.js index 46dd615..52e0198 100644 --- a/src/model/course/SectionParticipant.js +++ b/src/model/course/SectionParticipant.js @@ -73,6 +73,12 @@ Ext.define('Slate.model.course.SectionParticipant', { { name: 'PersonLastName', mapping: 'Person.LastName' + }, + { + name: 'PersonFullName', + calculate: function(data) { + return data.PersonFirstName + ' ' + data.PersonLastName; + } } ],